Skip to content

Commit

Permalink
Update changelog, prepare for a release
Browse files Browse the repository at this point in the history
  • Loading branch information
Garanas committed Mar 17, 2024
1 parent eec0322 commit 520434e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 44 deletions.
36 changes: 7 additions & 29 deletions changelog/3803.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,21 @@
# Game Version 3803

## Bug Fixes

<!-- Remove header when empty -->

## Balance

<!-- Remove header when empty -->

## Features

<!-- Remove header when empty -->

## Graphics
Various small fixes for bugs that were reported by players.

<!-- Remove header when empty -->
With gratitude to all those who took the time to report issues,

## AI
Jip

<!-- Remove header when empty -->

## Other Changes
## Bug Fixes

<!-- Remove header when empty -->
- (#xyzw) Fix an edge case where the game would pause when a player is defeated

## Contributors

With thanks to the following people who contributed through coding:

<!-- Remove when empty -->

With thanks to the following people who contributed through binary patches:

<!-- Remove when empty -->

With thanks to the following individuals who contributed through model, texture, and effect changes:

<!-- Remove when empty -->
- Jip

And, last but certainly not least - with thanks to those that took part in constructive discussions:

<!-- Remove when empty -->
- Shen
21 changes: 6 additions & 15 deletions lua/userInit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ do
proposedFocusArmy = proposedFocusArmy + 1
end

if localClient and TableGetn(clients) > 1 and proposedFocusArmy and currentFocusArmy != proposedFocusArmy then
if localClient and TableGetn(clients) > 1 and proposedFocusArmy then
command = "SetFocusArmy " .. (currentFocusArmy - 1)

-- try to inform moderators
Expand Down Expand Up @@ -207,14 +207,11 @@ do
Mass=0,
Energy=0,
Sender=localClient.name,
Msg={ to='moderators', text = string.format("Is (aggressively) trying to change focus army from %d to %d via ConExecute!", currentFocusArmy, proposedFocusArmy ) }
Msg={ to='moderators', text = string.format("Is (continously) trying to change focus army from %d to %d via ConExecute!", currentFocusArmy, proposedFocusArmy ) }
},
},
true
)

-- just to be annoying
SessionRequestPause()
end

tickstamp = tick
Expand Down Expand Up @@ -269,7 +266,7 @@ do
proposedFocusArmy = proposedFocusArmy + 1
end

if localClient and TableGetn(clients) > 1 and proposedFocusArmy and currentFocusArmy != proposedFocusArmy then
if localClient and TableGetn(clients) > 1 and proposedFocusArmy then
command = "SetFocusArmy " .. (currentFocusArmy - 1)

-- try to inform moderators
Expand Down Expand Up @@ -300,14 +297,11 @@ do
Mass=0,
Energy=0,
Sender=localClient.name,
Msg={ to='moderators', text = string.format("Is (aggressively) trying to change focus army from %d to %d via ConExecuteSave!", currentFocusArmy, proposedFocusArmy) }
Msg={ to='moderators', text = string.format("Is (continously) trying to change focus army from %d to %d via ConExecuteSave!", currentFocusArmy, proposedFocusArmy) }
},
},
true
)

-- just to be annoying
SessionRequestPause()
end

tickstamp = tick
Expand Down Expand Up @@ -676,7 +670,7 @@ do
local currentFocusArmy = GetFocusArmy()
local proposedFocusArmy = number

if localClient and TableGetn(clients) > 1 and proposedFocusArmy and currentFocusArmy != proposedFocusArmy then
if localClient and TableGetn(clients) > 1 and proposedFocusArmy then
number = currentFocusArmy

-- try to inform moderators
Expand Down Expand Up @@ -707,14 +701,11 @@ do
Mass=0,
Energy=0,
Sender=localClient.name,
Msg={ to='moderators', text = string.format("Is (aggressively) trying to change focus army from %d to %d via SetFocusArmy!", currentFocusArmy, proposedFocusArmy) }
Msg={ to='moderators', text = string.format("Is (continously) trying to change focus army from %d to %d via SetFocusArmy!", currentFocusArmy, proposedFocusArmy) }
},
},
true
)

-- just to be annoying
SessionRequestPause()
end

tickstamp = tick
Expand Down

0 comments on commit 520434e

Please sign in to comment.