mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-01-04 14:14:57 +00:00
12 lines
346 B
Plaintext
12 lines
346 B
Plaintext
/**
|
|
* Persists polly messages across rounds
|
|
*/
|
|
/datum/controller/subsystem/persistence/LoadGamePersistence()
|
|
. = ..()
|
|
LoadPolly()
|
|
|
|
/datum/controller/subsystem/persistence/proc/LoadPolly()
|
|
for(var/mob/living/simple_animal/parrot/Polly/P in GLOB.alive_mob_list)
|
|
twitterize(P.speech_buffer, "polytalk")
|
|
break //Who's been duping the bird?!
|