From e834aa9898b5f59fceac5e89717856087daca5d3 Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Sun, 24 Nov 2013 21:20:33 -0500 Subject: [PATCH] Fix for crash when checking zone master of room --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 19b6b20..0ed5c15 100644 --- a/src/game.c +++ b/src/game.c @@ -1274,9 +1274,9 @@ process_command(dbref player, char *command, dbref cause, dbref realcause, int goto done; } } else - a += list_match(Contents(Zone(Location(player)))); + a += list_match(Contents(Zone(check_loc))); } else { - a += cmd_match(Zone(Location(player))); + a += cmd_match(Zone(check_loc)); MAYBE_ADD_ERRDB(errdb); } } -- 2.30.2