X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fcommands.py;h=d002ab3210b35100c2b63cb2784251f2abefc2ca;hb=d3e3ad21ec1da876646952af07d992c054e8739a;hp=f20297d31da9041562a4acd9cdf44ecd130f3ba4;hpb=b96dfc255b732c753d8da8d727b3d3be6e072302;p=plomrogue diff --git a/server/commands.py b/server/commands.py index f20297d..d002ab3 100644 --- a/server/commands.py +++ b/server/commands.py @@ -49,6 +49,9 @@ def command_thingshere(str_y, str_x): if None != y and None != x and y < length and x < length: pos = (y * world_db["MAP_LENGTH"]) + x strong_write(io_db["file_out"], "THINGS_HERE START\n") + terrain = chr(world_db["Things"][0]["T_MEMMAP"][pos]) + terrain_name = world_db["terrain_names"][terrain] + strong_write(io_db["file_out"], "terrain: " + terrain_name + "\n") if "v" == chr(world_db["Things"][0]["fovmap"][pos]): for id in [id for tid in sorted(list(world_db["ThingTypes"])) for id in world_db["Things"] @@ -499,6 +502,9 @@ def play_move(str_arg): move_result = mv_yx_in_dir_legal(chr(dir), 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 if chr(world_db["MAP"][pos]) in symbols_passable: world_db["Things"][0]["T_ARGUMENT"] = dir set_command("move")