diff -r 3d14950641a4 -r 690cc84e9fd6 share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua --- a/share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua Wed Aug 08 14:38:54 2018 +0200 +++ b/share/hedgewars/Data/Scripts/Multiplayer/Tumbler.lua Wed Aug 08 15:22:34 2018 +0200 @@ -916,18 +916,18 @@ roundKills = roundKills + 1 if roundKills == 2 then - AddCaption(loc("Double Kill!"),0xffffffff,capgrpMessage2) + AddCaption(loc("Double Kill!"),capcolDefault,capgrpMessage2) elseif roundKills == 3 then - AddCaption(loc("Killing spree!"),0xffffffff,capgrpMessage2) + AddCaption(loc("Killing spree!"),capcolDefault,capgrpMessage2) elseif roundKills >= 4 then - AddCaption(loc("Unstoppable!"),0xffffffff,capgrpMessage2) + AddCaption(loc("Unstoppable!"),capcolDefault,capgrpMessage2) end elseif gear == CurrentHedgehog then DisableTumbler() elseif gear ~= CurrentHedgehog then - AddCaption(loc("Friendly Fire!"),0xffffffff,capgrpMessage2) + AddCaption(loc("Friendly Fire!"),capcolDefault,capgrpMessage2) end end