Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Feb 22, 2024
1 parent 2b2af09 commit 1353012
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts_src/headers/v15.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,9 @@ procedure getTimeBit begin
if (time >= 2400 and time <= 2459) then return bit_24;
end

//Used for warping to the level where NCR helps out
// Used for warping to the level where NCR helps out
#define CHECK_LEVEL \
if is_loading_game then \
ndebug("error: attemmpting to use move_to in during loading"); \
else if elevation(self_obj) != elevation(dude_obj) then \
if not is_loading_game and (elevation(self_obj) != elevation(dude_obj)) then \
move_to(self_obj, self_tile, elevation(dude_obj));

#define CHECK_SQUATTERS_RUN \
Expand Down

0 comments on commit 1353012

Please sign in to comment.