Fixes invisible fruits (#27547)

* Fixes invisible plant mutations products. Random mutations can have more sprites

* Removes /datum/seed/test

* This comment is not relevant anymore
This commit is contained in:
adrian
2020-08-14 12:10:39 -03:00
committed by GitHub
parent d8eb32575b
commit f686aca6b9
5 changed files with 15 additions and 90 deletions

View File

@@ -11,6 +11,7 @@ var/datum/subsystem/plant/SSplant
var/list/processing_plants = list()
var/list/currentrun
var/list/datum/seed/seeds = list() // All seed data stored here.
var/roundstart_seeds
/datum/subsystem/plant/New()
NEW_SS_GLOBAL(SSplant)
@@ -26,6 +27,7 @@ var/datum/subsystem/plant/SSplant
seeds[S.name] = S
S.uid = "[seeds.len]"
S.roundstart = TRUE
roundstart_seeds = seeds.len
..()
/datum/subsystem/plant/proc/create_random_seed(var/survive_on_station)