X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=plugins%2Fserver%2FPleaseTheIslandGod.py;h=4a884ed37883ab5cf11294d1d204376e1a9cf654;hp=770ce51aa76d488d285270eefcde6261d54b543e;hb=160e1660559e70c53ab2fcfc8af6461f539c647d;hpb=d0474e223bb877bb3f33df2befc095e082b918d0 diff --git a/plugins/server/PleaseTheIslandGod.py b/plugins/server/PleaseTheIslandGod.py index 770ce51..4a884ed 100644 --- a/plugins/server/PleaseTheIslandGod.py +++ b/plugins/server/PleaseTheIslandGod.py @@ -375,7 +375,7 @@ def play_use_attempt_hook(t, tt): wood_id = tid break if wood_id == None: - log("You CAN'T use a " + world_db["ThingTypes"][type]["TT_NAME"] + log("You CAN'T use a " + tt["TT_NAME"] + " without some wood in your inventory.") return False return True @@ -387,7 +387,7 @@ def play_use_attempt_hook(t, tt): elif tt["TT_TOOL"] == "wood": log("To use wood, you NEED a carpentry tool.") return False - elif type == world_db["SLIPPERS"]: + elif tt == world_db["ThingTypes"][world_db["SLIPPERS"]]: return True def play_pickup_attempt_hook(t):