Skip to content

Commit 252e31b

Browse files
author
Motive
committed
- Fixed a bug where it would be possible for the admin log to record the wrong sender in the global log.
1 parent 29292a4 commit 252e31b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Common/Log.galaxy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ static void libcrtx_log_event_global(int player, string message)
6060
while(currentLevel < c_cortexMaxLoggedCommands)
6161
{
6262
libcrtx_log_globallog[currentLevel - 1] = libcrtx_log_globallog[currentLevel];
63+
libcrtx_log_globallogplayers[c_currentLevel - 1] = libcrtx_log_globallogplayers[currentLevel];
6364
currentLevel += 1;
6465
}
6566
libcrtx_log_globallog[c_cortexMaxLoggedCommands - 1] = message;

GameUIOverride.SC2Layout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<Style val="ChatDisplayInternational"/>
1919
<AcceptsMouse val="false"/>
2020
<BatchText val="true"/>
21-
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-200"/>
21+
<Anchor side="Bottom" relative="$parent" pos="Max" offset="-335"/>
2222
<Anchor side="Left" relative="$parent" pos="Mid" offset="0"/>
2323
<Anchor side="Right" relative="$parent" pos="Mid" offset="0"/>
2424
<Width val="720"/>

0 commit comments

Comments
 (0)