Files
Paradise/code/modules/world_topic/announce.dm
AffectedArc07 d6af52dd2b world/Topic Refactor (#14850)
* world/Topic Refactor

* These arent needed anymore

* How could I forget this

* Biggest edit ever

* Forgot this

* Mini refactor
2020-12-09 11:24:33 -05:00

12 lines
406 B
Plaintext

/datum/world_topic_handler/announce
topic_key = "announce"
requires_commskey = TRUE
/datum/world_topic_handler/announce/execute(list/input, key_valid)
var/prtext = input["announce"]
var/pr_substring = copytext(prtext, 1, 23)
if(pr_substring == "Pull Request merged by")
GLOB.pending_server_update = TRUE
for(var/client/C in GLOB.clients)
to_chat(C, "<span class='announce'>PR: [prtext]</span>")