mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
Fixes issues found by new switch lints (#64766)
Very nice addition to sdmm.
This commit is contained in:
@@ -294,10 +294,10 @@
|
||||
var/dir2
|
||||
var/dir3
|
||||
switch (direction)
|
||||
if (NORTH || SOUTH)
|
||||
if (NORTH, SOUTH)
|
||||
dir2 = EAST
|
||||
dir3 = WEST
|
||||
if (EAST || WEST)
|
||||
if (EAST, WEST)
|
||||
dir2 = NORTH
|
||||
dir3 = SOUTH
|
||||
var/turf/farthest_perpendicular_turf = farthest_turf
|
||||
|
||||
Reference in New Issue
Block a user