mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
* Mice no longer spawn on grilles Fixes #21574. Mice no longer spawn on cables that have dense objects also on the tile. Also added the Mice Migration event, used for debug purposes, currently disabled. * Uses proc that exists to check for density
16 lines
480 B
Plaintext
16 lines
480 B
Plaintext
/datum/round_event_control/mice_migration
|
|
name = "Mice Migration"
|
|
typepath = /datum/round_event/mice_migration
|
|
weight = 0
|
|
|
|
/datum/round_event/mice_migration
|
|
announceWhen = 0
|
|
|
|
/datum/round_event/mice_migration/announce()
|
|
priority_announce("Due to space-winter, a number of rodents have \
|
|
migrated into the maintenance tunnels.", "Migration Alert",
|
|
'sound/effects/mousesqueek.ogg', 100, 1)
|
|
|
|
/datum/round_event/mice_migration/start()
|
|
SSsqueak.trigger_migration(rand(5,15))
|