pandapaul / minecraft-dailies-server

Serves up fresh Minecraft quests daily.
http://www.minecraftdailies.com
GNU General Public License v3.0
2 stars 2 forks source link

Change Strings to IDs #1

Closed frodare closed 8 years ago

frodare commented 8 years ago
[
    {
        "type": "gather",
        "target": {
            "type": "sand",
            "quantity": 30
        },
        "reward": {
            "type": "xp",
            "quantity": 4332
        }
    }
]

to

[
    {
        "type": "gather",
        "target": {
            "type": 12,
            "quantity": 30
        },
        "reward": {
            "type": 1,
            "quantity": 4332
        }
    }
]