mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-22 03:27:46 +01:00
Linter diagnostics + bans non-var relative pathing
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
if(can_die())
|
||||
qdel(src)
|
||||
|
||||
proc/get_deepspace(x,y)
|
||||
/proc/get_deepspace(x,y)
|
||||
var/turf/unsimulated/map/overmap_turf = locate(x,y,global.using_map.overmap_z)
|
||||
if(!istype(overmap_turf))
|
||||
CRASH("Attempt to get deepspace at ([x],[y]) which is not on overmap: [overmap_turf]")
|
||||
@@ -75,7 +75,7 @@ proc/get_deepspace(x,y)
|
||||
return FALSE
|
||||
// return isnull(client) && !key && stat == DEAD // Allows bodies that players have ghosted from to be deleted - Ater
|
||||
|
||||
proc/overmap_spacetravel(var/turf/space/T, var/atom/movable/A)
|
||||
/proc/overmap_spacetravel(var/turf/space/T, var/atom/movable/A)
|
||||
if (!T || !A)
|
||||
return
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ var/list/moving_levels = list()
|
||||
//Proc to 'move' stars in spess
|
||||
//yes it looks ugly, but it should only fire when state actually change.
|
||||
//null direction stops movement
|
||||
proc/toggle_move_stars(zlevel, direction)
|
||||
/proc/toggle_move_stars(zlevel, direction)
|
||||
if(!zlevel)
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user