Proximity monitors now work on stuff that was created inside it (#67136)

This commit is contained in:
Fikou
2022-05-20 14:46:43 -05:00
committed by GitHub
parent 0bace34ef6
commit 3042676e8d
@@ -10,7 +10,8 @@
///The signals of the connect range component, needed to monitor the turfs in range.
var/static/list/loc_connections = list(
COMSIG_ATOM_ENTERED = .proc/on_entered,
COMSIG_ATOM_EXITED =.proc/on_uncrossed,
COMSIG_ATOM_EXITED = .proc/on_uncrossed,
COMSIG_ATOM_INITIALIZED_ON = .proc/on_entered,
)
/datum/proximity_monitor/New(atom/_host, range, _ignore_if_not_on_turf = TRUE)