X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fcommands.py;h=7ad36d00eedbf87419cef00c1927ee446869273f;hp=40f98edd4c26f0ee41e2eeba0eb6c3dad9db3b1c;hb=428f55c523a2995e6c4e80d4b4f7c8726202a5b4;hpb=96ae4658e929cddfb36549484c532674a2867f0e diff --git a/server/commands.py b/server/commands.py index 40f98ed..7ad36d0 100644 --- a/server/commands.py +++ b/server/commands.py @@ -493,16 +493,19 @@ def play_move(str_arg): if not str_arg in directions_db: print("Illegal move direction string.") return - dir = ord(directions_db[str_arg]) + d = ord(directions_db[str_arg]) from server.utils import mv_yx_in_dir_legal - move_result = mv_yx_in_dir_legal(chr(dir), t["T_POSY"], t["T_POSX"]) + move_result = mv_yx_in_dir_legal(chr(d), t["T_POSY"], t["T_POSX"]) if 1 == move_result[0]: pos = (move_result[1] * world_db["MAP_LENGTH"]) + move_result[2] if ord("~") == world_db["MAP"][pos]: log("You can't SWIM.") return + from server.config.commands import play_move_attempt_hook + if play_move_attempt_hook(t, d, pos): + return if chr(world_db["MAP"][pos]) in symbols_passable: - world_db["Things"][0]["T_ARGUMENT"] = dir + world_db["Things"][0]["T_ARGUMENT"] = d set_command("move") return log("You CAN'T move there.")