diff -r 0e8db74ec585 -r 110d6c1e817f share/hedgewars/Data/Scripts/Multiplayer/HedgeEditor.lua --- a/share/hedgewars/Data/Scripts/Multiplayer/HedgeEditor.lua Mon Sep 03 05:05:00 2018 +0200 +++ b/share/hedgewars/Data/Scripts/Multiplayer/HedgeEditor.lua Mon Sep 03 12:46:57 2018 +0200 @@ -2868,7 +2868,7 @@ -- Display the X and Y coordinates of the cursor while the cursor is active function updateCursorCoords() - if band(GetState(CurrentHedgehog), gstChooseTarget) ~= 0 and CursorX ~= NoPointX then + if band(GetState(CurrentHedgehog), gstChooseTarget) ~= 0 and CursorX ~= NO_CURSOR then local x1, y = 12, 24 if tagCursorX then DeleteVisualGear(tagCursorX) @@ -3785,7 +3785,7 @@ -- regardless of our other ammo, give stuff that is useful for editing SetEditingWeps(100) if GetHogLevel(CurrentHedgehog) == 0 then - SetTurnTimeLeft(cMaxTurnTime) + SetTurnTimeLeft(MAX_TURN_TIME) else SkipTurn() -- skip the computer's turn end