mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-14 03:43:50 +00: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?!
|