fixes some locate checks being in world (#25365)

This commit is contained in:
GDN
2024-05-10 13:57:30 +00:00
committed by GitHub
parent f28b525e62
commit 110f775d8e
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -116,7 +116,7 @@
status_tab_data[++status_tab_data.len] = list("Power Stored:", "[blob_points]/[max_blob_points]")
/mob/camera/blob/Move(NewLoc, Dir = 0)
var/obj/structure/blob/B = locate() in range("3x3", NewLoc)
var/obj/structure/blob/B = locate() in range(3, NewLoc)
if(B)
loc = NewLoc
else