mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-26 18:13:35 +00:00
Runtime fixes.
This commit is contained in:
@@ -140,7 +140,7 @@ var/const/enterloopsanity = 100
|
|||||||
..()
|
..()
|
||||||
var/objects = 0
|
var/objects = 0
|
||||||
if(A && (A.flags & PROXMOVE))
|
if(A && (A.flags & PROXMOVE))
|
||||||
for(var/atom/thing as mob|obj|turf|area in range(1))
|
for(var/atom/movable/thing in range(1))
|
||||||
if(objects > enterloopsanity) break
|
if(objects > enterloopsanity) break
|
||||||
objects++
|
objects++
|
||||||
spawn(0)
|
spawn(0)
|
||||||
|
|||||||
@@ -187,13 +187,10 @@
|
|||||||
return
|
return
|
||||||
|
|
||||||
/obj/effect/beam/i_beam/process()
|
/obj/effect/beam/i_beam/process()
|
||||||
//world << "i_beam \ref[src] : process"
|
|
||||||
|
|
||||||
if((loc.density || !(master)))
|
if((loc && loc.density) || !master)
|
||||||
// world << "beam hit loc [loc] or no master [master], deleting"
|
|
||||||
qdel(src)
|
qdel(src)
|
||||||
return
|
return
|
||||||
//world << "proccess: [src.left] left"
|
|
||||||
|
|
||||||
if(left > 0)
|
if(left > 0)
|
||||||
left--
|
left--
|
||||||
|
|||||||
Reference in New Issue
Block a user