mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-06 05:53:27 +01:00
210f8badf4
* Handlers converted, now to fix 3532 compile errors * 3532 compile fixes later, got runtimes on startup * Well the server loads now atleast * Take 2 * Oops
16 lines
494 B
Plaintext
16 lines
494 B
Plaintext
/datum/event/spawn_floor_cluwne
|
|
|
|
|
|
/datum/event/spawn_floor_cluwne/start()
|
|
|
|
if(!GLOB.xeno_spawn)
|
|
message_admins("No valid spawn locations found, aborting...")
|
|
return kill()
|
|
|
|
var/turf/T = get_turf(pick(GLOB.xeno_spawn))
|
|
var/mob/living/simple_animal/hostile/floor_cluwne/S = new(T)
|
|
playsound(S, 'sound/spookoween/scary_horn.ogg', 50, 1, -1)
|
|
message_admins("A floor cluwne has been spawned at [COORD(T)][ADMIN_JMP(T)]")
|
|
log_game("A floor cluwne has been spawned at [COORD(T)]")
|
|
return 1
|