mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
-Obj/structure were being initialized before cameranet. I've added ticker checks to stop the runtimes that you get everytime you start the server..
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4608 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
var/image/obscured
|
var/image/obscured
|
||||||
|
|
||||||
/turf/proc/visibilityChanged()
|
/turf/proc/visibilityChanged()
|
||||||
if(cameranet)
|
if(ticker)
|
||||||
cameranet.updateVisibility(src)
|
cameranet.updateVisibility(src)
|
||||||
|
|
||||||
/turf/simulated/Del()
|
/turf/simulated/Del()
|
||||||
@@ -24,13 +24,13 @@
|
|||||||
// STRUCTURES
|
// STRUCTURES
|
||||||
|
|
||||||
/obj/structure/Del()
|
/obj/structure/Del()
|
||||||
if(cameranet)
|
if(ticker)
|
||||||
cameranet.updateVisibility(src)
|
cameranet.updateVisibility(src)
|
||||||
..()
|
..()
|
||||||
|
|
||||||
/obj/structure/New()
|
/obj/structure/New()
|
||||||
..()
|
..()
|
||||||
if(cameranet)
|
if(ticker)
|
||||||
cameranet.updateVisibility(src)
|
cameranet.updateVisibility(src)
|
||||||
|
|
||||||
// DOORS
|
// DOORS
|
||||||
|
|||||||
Reference in New Issue
Block a user