mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Hydro vines are entirely commented out due to their annoying habit of crashing the server.. Alium weeds should still work.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@605 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -723,9 +723,9 @@ datum
|
|||||||
return
|
return
|
||||||
*/
|
*/
|
||||||
reaction_obj(var/obj/O, var/volume)
|
reaction_obj(var/obj/O, var/volume)
|
||||||
if(istype(O,/obj/plant/vine/))
|
// if(istype(O,/obj/plant/vine/))
|
||||||
O:life -= rand(15,35) // Kills vines nicely // Not tested as vines don't work in R41
|
// O:life -= rand(15,35) // Kills vines nicely // Not tested as vines don't work in R41
|
||||||
else if(istype(O,/obj/alien/weeds/))
|
if(istype(O,/obj/alien/weeds/))
|
||||||
O:health -= rand(15,35) // Kills alien weeds pretty fast
|
O:health -= rand(15,35) // Kills alien weeds pretty fast
|
||||||
O:healthcheck()
|
O:healthcheck()
|
||||||
// Damage that is done to growing plants is separately
|
// Damage that is done to growing plants is separately
|
||||||
|
|||||||
@@ -730,7 +730,7 @@ obj/machinery/hydroponics/attackby(var/obj/item/O as obj, var/mob/user as mob)
|
|||||||
|
|
||||||
|
|
||||||
// BROKEN!!!!!!
|
// BROKEN!!!!!!
|
||||||
|
/*
|
||||||
/datum/vinetracker
|
/datum/vinetracker
|
||||||
var/list/vines = list()
|
var/list/vines = list()
|
||||||
|
|
||||||
@@ -790,13 +790,13 @@ obj/machinery/hydroponics/attackby(var/obj/item/O as obj, var/mob/user as mob)
|
|||||||
spawn(3000) del(V)
|
spawn(3000) del(V)
|
||||||
sleep(600)
|
sleep(600)
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
obj/plant
|
obj/plant
|
||||||
anchored = 1
|
anchored = 1
|
||||||
var/stage = 1
|
var/stage = 1
|
||||||
var/health = 10
|
var/health = 10
|
||||||
|
/*
|
||||||
obj/plant/vine
|
obj/plant/vine
|
||||||
name = "space vine"
|
name = "space vine"
|
||||||
icon = 'hydroponics.dmi'
|
icon = 'hydroponics.dmi'
|
||||||
@@ -837,4 +837,4 @@ obj/plant/vine
|
|||||||
if(exposed_temperature > 350)
|
if(exposed_temperature > 350)
|
||||||
health -= 15
|
health -= 15
|
||||||
if(health <= 0)
|
if(health <= 0)
|
||||||
del(src)
|
del(src) */
|
||||||
Reference in New Issue
Block a user