- Fix bug with infinite rounds in racer when a team quits mid-game
- Don't allow placing waypoint right on top of previous one, prevents accidental double waypoints
- Don't limit maps on number of embedded waypoints
-- Library for localizing strings in lua scripts
local lang = HedgewarsScriptLoad("Locale/" .. tostring(L) .. ".lua")
function loc(text)
if locale ~= nil and locale[text] ~= nil then return locale[text]
else return text
end
end