Skip to content

Commit 0978050

Browse files
authored
Update level_traits.dm
1 parent f4210ad commit 0978050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/__HELPERS/level_traits.dm

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ GLOBAL_LIST_INIT(default_map_traits, MAP_TRANSITION_CONFIG)
9191
/proc/are_zs_connected(atom/A, atom/B)
9292
A = get_turf(A)
9393
B = get_turf(B)
94-
if(isnull(A) || isnull(B)) // One of you is a liar.
94+
if(isnull(A) || isnull(B))
9595
return FALSE
9696
if(A.z == B.z)
9797
return TRUE

0 commit comments

Comments
 (0)