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:
SmArtKar
2024-07-23 20:27:43 +01:00
committed by GitHub
parent ef2ee14966
commit ba59fa4524
+1 -1
View File
@@ -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))