Skip to content

Commit

Permalink
Update the in-game changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas committed Mar 17, 2024
1 parent b00c928 commit d5a6535
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
17 changes: 12 additions & 5 deletions changelog/3802.md
@@ -1,22 +1,28 @@
# Game Version 3802
# Game Version 3802 (17th of March, 2024)

Various small fixes for bugs that were reported by players.

With gratitude to all those who took the time to report issues,

Jip

## Bug Fixes

- (#5986) Fix a bug where experimental units leave no wreckage
- (#5986) Fix a bug where experimental units leave no wreckage.

- (#5997) Fix losing reclaim orders when distributing a large number of reclaim orders
- (#5997) Fix losing reclaim orders when distributing a large number of reclaim orders.

Reclaim orders are now distributed in a similar fashion as move and build orders are. Each reclaim order is assigned to a single engineer. There is no redundancy anymore.

## Graphics

- (#5998) Further improvements to the assets of the Mongoose
- (#5998) Further improvements to the assets of the Mongoose.

With thanks to Ajamajan the Mongoose received a second round of attention. Do zoom in and give the results a good look in-game!

## Other Changes

- (#5995) Adds an event message when a player (un)pauses the game or self destructs units
- (#5995) Adds an event message when a player (un)pauses the game or self destructs units.

The chat message is also visible in the game log that is shown in the client, which is useful for moderators.

Expand All @@ -32,3 +38,4 @@ And, last but certainly not least - with thanks to those that took part in const
- Sheikah
- Prohibitorum
- Maudlin27
- Deribus
2 changes: 1 addition & 1 deletion lua/UserSync.lua
Expand Up @@ -130,7 +130,7 @@ function OnSync()
Mass=0,
Energy=0,
Sender=localClient.name,
Msg={ to='moderators', text = string.format("Switched focus army from %d to %d!", Sync.FocusArmyChanged.old, Sync.FocusArmyChanged.new) }
Msg={ to='moderators', text = string.format("Switched focus army from %s to %s!", tostring(Sync.FocusArmyChanged.old), tostring(Sync.FocusArmyChanged.new)) }
},
},
true
Expand Down
16 changes: 15 additions & 1 deletion lua/ui/lobby/changelogData.lua
@@ -1,8 +1,22 @@
---@type number
last_version = 3801
last_version = 3802

---@type PatchNotes[]
gamePatches = {
{
version = 3802,
name = "Hotfix",
hasPrettyGithubRelease = true,
description = {
"# Game Version 3802 (17th of March, 2024)",
"",
"Various small fixes for bugs that were reported by players.",
"",
"With gratitude to all those who took the time to report issues,",
"",
"Jip",
}
},
{
version = 3801,
name = "Developers patch",
Expand Down

0 comments on commit d5a6535

Please sign in to comment.