ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GameWorld.py
@@ -406,7 +406,7 @@
    try:
        if type(inputStr) in [int, float]:
            return inputStr
        if inputStr.isdigit():
        if inputStr.isdigit() or (inputStr.startswith("-") and inputStr[1:].isdigit()):
            result = int(inputStr)
        else:
            result = float(inputStr)