From 14f1bc2abbcd341fd25b8478d603f99b6a36e7a6 Mon Sep 17 00:00:00 2001 From: cancel Date: Tue, 27 Nov 2018 13:54:25 +0900 Subject: [PATCH] Cleanup --- sim.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sim.c b/sim.c index 390d660..9703c51 100644 --- a/sim.c +++ b/sim.c @@ -135,10 +135,6 @@ static inline void oper_move_relative_or_explode(Gbuffer gbuf, Mbuffer mbuf, #define BECOME(_glyph) \ gbuffer_poke(gbuffer, height, width, y, x, This_oper_char) -#define OPER_REQUIRE_BANG() \ - if (!oper_has_neighboring_bang(gbuffer, height, width, y, x)) \ - return - #define LOCKING Mark_flag_lock #define NONLOCKING Mark_flag_none #define HASTE Mark_flag_haste_input @@ -207,8 +203,6 @@ static inline void oper_move_relative_or_explode(Gbuffer gbuf, Mbuffer mbuf, ORCA_DECLARE_OPERATORS(ORCA_SOLO_OPERATORS, ORCA_DUAL_OPERATORS) -//////// Behavior - MOVING_OPERATOR(north, -1, 0) MOVING_OPERATOR(east, 0, 1) MOVING_OPERATOR(south, 1, 0)