mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-11 16:14:08 +01:00
Fixes reversed isnull check in stacking machine consoles (#85160)
## About The Pull Request Mineral stacking machine consoles had a reversed isnull area check, preventing them from linking with stacking machines ## Changelog 🆑 fix: Stacking machine consoles link to machinery now /🆑
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
/obj/machinery/mineral/stacking_unit_console/Initialize(mapload)
|
||||
. = ..()
|
||||
var/area/our_area = get_area(src)
|
||||
if(!isnull(our_area))
|
||||
if(isnull(our_area))
|
||||
return
|
||||
var/list/turf_list = our_area.get_turfs_by_zlevel(z)
|
||||
if(!islist(turf_list))
|
||||
|
||||
Reference in New Issue
Block a user