fixed string in devtools script

This commit is contained in:
troido 2018-06-15 23:03:14 +02:00
parent 67f6e2b0f5
commit 6c3c85b204
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def replaceplayeritems(data):
def replaceobject(obj):
if not isinstance(obj, dict) or "name" not in obj or sprite not in obj:
if not isinstance(obj, dict) or "name" not in obj or "sprite" not in obj:
return obj
name = obj["name"]
sprite = obj["sprite"]