cannot join string with ints

This commit is contained in:
jomo
2014-07-14 05:24:08 +02:00
parent fac11c147d
commit 35e59583bc

View File

@@ -23,7 +23,7 @@ def saveInputs():
def location_str(block):
return ";".join([block.getWorld().getName(),block.getX(),block.getY(),block.getZ()])
return ";".join([block.getWorld().getName(), str(block.getX()), str(block.getY()), str(block.getZ())])
def add_input(creator, block, timeout_off, timeout_on):