share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Fri, 17 May 2019 14:15:40 +0200
changeset 14994 5188ecbf726f
parent 9985 42cd42e44c9a
permissions -rw-r--r--
Rank tied teams properly in Control, CTF and Mutant

-- Library for parameters handling

params = {}

function parseParams()
    if ScriptParam ~= nil then
        for k, v in string.gmatch(ScriptParam, "(%w+)=([^,]+)") do
            params[k] = v
        end
    end
end