mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13.git
synced 2026-08-31 09:46:41 +01:00
12 lines
342 B
Plaintext
12 lines
342 B
Plaintext
/**
|
|
* Persists poly messages across rounds
|
|
*/
|
|
/datum/controller/subsystem/persistence/LoadGamePersistence()
|
|
. = ..()
|
|
LoadPoly()
|
|
|
|
/datum/controller/subsystem/persistence/proc/LoadPoly()
|
|
for(var/mob/living/simple_animal/parrot/Poly/P in GLOB.alive_mob_list)
|
|
twitterize(P.speech_buffer, "polytalk")
|
|
break //Who's been duping the bird?!
|