Skip to content

Commit

Permalink
recalls enter so it triggers for real
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed May 5, 2024
1 parent c5b5d5c commit 816dc91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/game/atoms_movable.dm
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,9 @@
var/impact_signal = SEND_SIGNAL(src, COMSIG_MOVABLE_IMPACT, hit_atom, throwingdatum)
if(impact_signal & COMPONENT_MOVABLE_IMPACT_FLIP_HITPUSH)
hitpush = FALSE // hacky, tie this to something else or a proper workaround later

if(isturf(loc))
var/turf/T = loc
T.Entered(src)
if(impact_signal & ~COMPONENT_MOVABLE_IMPACT_NEVERMIND) // in case a signal interceptor broke or deleted the thing before we could process our hit
return hit_atom.hitby(src, throwingdatum=throwingdatum, hitpush=hitpush)

Expand Down

0 comments on commit 816dc91

Please sign in to comment.