Files
Bubberstation/code/modules/hydroponics/grown/random.dm
tralezab 6c01cc2c01 every case of initialize that should have mapload, does (#61623)
## About The Pull Request

stop forgetting to include mapload, if you don't include it then every single subtype past it by default doesn't include it

for example, `obj/item` didn't include mapload so every single item by default didn't fill in mapload

![](https://media.discordapp.net/attachments/823293417186000909/875122648605147146/image0.gif)

## Regex used:

procs without args, not even regex

`/Initialize()`

procs with args
`\/Initialize\((?!mapload)((.)*\w)?`

cleanup of things i didn't want to mapload:
`\/datum\/(.)*\/Initialize\(mapload`
2021-09-24 17:56:50 -04:00

36 lines
895 B
Plaintext

//Random seeds; stats, traits, and plant type are randomized for each seed.
/obj/item/seeds/random
name = "pack of strange seeds"
desc = "Mysterious seeds as strange as their name implies. Spooky."
icon_state = "seed-x"
species = "?????"
plantname = "strange plant"
product = /obj/item/food/grown/random
icon_grow = "xpod-grow"
icon_dead = "xpod-dead"
icon_harvest = "xpod-harvest"
growthstages = 4
custom_premium_price = PAYCHECK_EASY * 2
/obj/item/seeds/random/Initialize(mapload)
. = ..()
randomize_stats()
if(prob(60))
add_random_reagents(1, 3)
if(prob(50))
add_random_traits(1, 2)
add_random_plant_type(35)
/obj/item/food/grown/random
seed = /obj/item/seeds/random
name = "strange plant"
desc = "What could this even be?"
icon_state = "crunchy"
/obj/item/food/grown/random/Initialize(mapload)
. = ..()
wine_power = rand(10,150)
if(prob(1))
wine_power = 200