From 7817a8ebdd192c9990f7a5dd8284b8375e356fe9 Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Wed, 23 Sep 2020 22:56:27 -0600 Subject: [PATCH] Revert previous commit; auto-eject is Lynx behavior --- js/tiletypes.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/tiletypes.js b/js/tiletypes.js index 77ac9b9..e739dae 100644 --- a/js/tiletypes.js +++ b/js/tiletypes.js @@ -623,8 +623,9 @@ const TILE_TYPES = { draw_layer: LAYER_TERRAIN, on_arrive(me, level, other) { if (me.open) { - // Traps immediately eject their contents, if possible - level.attempt_step(other, other.direction); + // Lynx: Traps immediately eject their contents, if possible + // TODO compat this, cc2 doens't do it! + //level.attempt_step(other, other.direction); } else { level.set_actor_stuck(other, true);