mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-10 08:54:15 +00:00
16 lines
386 B
Plaintext
16 lines
386 B
Plaintext
/datum/round_event_control/wizard/lava //THE LEGEND NEVER DIES
|
|
name = "The Floor Is LAVA!"
|
|
weight = 2
|
|
typepath = /datum/round_event/wizard/lava
|
|
max_occurrences = 3
|
|
earliest_start = 0
|
|
|
|
/datum/round_event/wizard/lava
|
|
endWhen = 0
|
|
var/started = FALSE
|
|
|
|
/datum/round_event/wizard/lava/start()
|
|
if(!started)
|
|
started = TRUE
|
|
SSweather.run_weather("the floor is lava", ZLEVEL_STATION)
|