diff -r b58f98bbc120 -r 22f2fd8a3d2c hedgewars/uVariables.pas --- a/hedgewars/uVariables.pas Thu Jul 25 16:29:14 2019 +0300 +++ b/hedgewars/uVariables.pas Mon Jul 22 19:26:58 2019 +0200 @@ -280,6 +280,9 @@ // whether Lua requested to pause the clock LuaClockPaused: boolean; + // whether /lua command was used + LuaCmdUsed: boolean; + MaskedSounds : array[TSound] of boolean; LastVoice : TVoice; @@ -3007,6 +3010,8 @@ LuaEndTurnRequested:= false; LuaNoEndTurnTaunts:= false; + LuaCmdUsed:= false; + for t:= Low(TSound) to High(TSound) do MaskedSounds[t]:= false;