Open eriktorbjorn opened 1 year ago
Here's how FLAT-DOOR-F handles entering:
FLAT-DOOR-F
(<ENTERING?> <COND (<HERE? THALL> <DO-WALK ,P?EAST>) (T <DO-WALK ,P?WEST>)> T)
Here's how FLAT-F handles it:
FLAT-F
(<ENTERING?> <DO-WALK ,P?EAST> T)
However, IN-FLAT is south of THALL, not east, so this code probably reflects an earlier version of the game's map.
IN-FLAT
THALL
Here's how
FLAT-DOOR-F
handles entering:Here's how
FLAT-F
handles it:However,
IN-FLAT
is south ofTHALL
, not east, so this code probably reflects an earlier version of the game's map.