share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <almikes@aol.com>
Wed, 23 Nov 2016 02:39:08 +0100
changeset 11985 b2783dd12f30
parent 9985 42cd42e44c9a
permissions -rw-r--r--
Fix incorrect type check of wpRad in Racer

-- 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