mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
split tgui html (#17476)
* Repackage yarn sdks * oups forgot that * update dompurify * fix mantraps * . * fix weakrefs * rm * porting the HTML split * minify * ut that back * bye poly * . * re minify * .. * prettier * fix that
This commit is contained in:
@@ -63,7 +63,7 @@
|
||||
var/atom/movable/AM = WF.resolve()
|
||||
if(isnull(AM))
|
||||
log_debug("DEBUG: HasProximity called without reference on [src].")
|
||||
attached_device?.HasProximity(T, WEAKREF(AM), old_loc)
|
||||
attached_device?.HasProximity(T, WF, old_loc)
|
||||
|
||||
/obj/item/transfer_valve/Moved(old_loc, direction, forced)
|
||||
. = ..()
|
||||
|
||||
@@ -661,11 +661,11 @@ var/list/global/tank_gauge_cache = list()
|
||||
SIGNAL_HANDLER
|
||||
if(isnull(WF))
|
||||
return
|
||||
var/atom/movable/AM = WF
|
||||
var/atom/movable/AM = WF.resolve()
|
||||
if(isnull(AM))
|
||||
log_debug("DEBUG: HasProximity called without reference on [src].")
|
||||
return
|
||||
assembly?.HasProximity(T, WEAKREF(AM), old_loc)
|
||||
assembly?.HasProximity(T, WF, old_loc)
|
||||
|
||||
/obj/item/tankassemblyproxy/Moved(old_loc, direction, forced)
|
||||
if(isturf(old_loc))
|
||||
|
||||
Reference in New Issue
Block a user