Control (style): Fix scoring breaking after using extra time
authorWuzzy <Wuzzy2@mail.ru>
Fri, 17 May 2019 02:08:44 +0200
changeset 14988 0ebecd424fc7
parent 14987 932f1375a5c7
child 14989 5188ecbf726f
Control (style): Fix scoring breaking after using extra time
share/hedgewars/Data/Maps/Control/map.lua
--- a/share/hedgewars/Data/Maps/Control/map.lua	Fri May 17 02:00:29 2019 +0200
+++ b/share/hedgewars/Data/Maps/Control/map.lua	Fri May 17 02:08:44 2019 +0200
@@ -426,6 +426,16 @@
 
 end
 
+function onHogAttack(ammoType)
+	-- Update TimeCounter after using extra time
+	if ammoTime == amExtraTime then
+		if (TimeCounter == 0) and (TurnTimeLeft > 0) then
+			TimeCounter = TurnTimeLeft
+		end
+		TimeCounter = TimeCounter + 30000
+	end
+end
+
 function InABetterPlaceNow(gear)
 	for i = 0, (numhhs-1) do
 		if gear == hhs[i] then