mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Readded spawn(0) and fixed a silly comment.
This commit is contained in:
@@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
//BEGIN CENTCOM ACCESS
|
//BEGIN CENTCOM ACCESS
|
||||||
/*Should leave plenty of room if we need to add more access levels.
|
/*Should leave plenty of room if we need to add more access levels.
|
||||||
/var/const/Mostly for admin fun times.*/
|
Mostly for admin fun times.*/
|
||||||
/var/const/access_cent_general = 101//General facilities.
|
/var/const/access_cent_general = 101//General facilities.
|
||||||
/var/const/access_cent_thunder = 102//Thunderdome.
|
/var/const/access_cent_thunder = 102//Thunderdome.
|
||||||
/var/const/access_cent_specops = 103//Special Ops.
|
/var/const/access_cent_specops = 103//Special Ops.
|
||||||
|
|||||||
@@ -95,16 +95,17 @@ var/global/list/uneatable = list(
|
|||||||
|
|
||||||
|
|
||||||
process()
|
process()
|
||||||
eat()
|
spawn(0)
|
||||||
dissipate()
|
eat()
|
||||||
check_energy()
|
dissipate()
|
||||||
if(current_size >= 3)
|
check_energy()
|
||||||
move()
|
if(current_size >= 3)
|
||||||
if(current_size <= 7)
|
move()
|
||||||
pulse()
|
if(current_size <= 7)
|
||||||
if(current_size >= 5)
|
pulse()
|
||||||
if(prob(event_chance))//Chance for it to run a special event TODO:Come up with one or two more that fit
|
if(current_size >= 5)
|
||||||
event()
|
if(prob(event_chance))//Chance for it to run a special event TODO:Come up with one or two more that fit
|
||||||
|
event()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user