Skip to content

Commit

Permalink
Update ticker.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
DexterDude authored Aug 13, 2024
1 parent 9a453b8 commit da5e366
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/controllers/subsystem/ticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -399,15 +399,15 @@ SUBSYSTEM_DEF(ticker)

/datum/controller/subsystem/ticker/proc/send_tip_of_the_round()
var/message
var/tip_file = pick("strings/loretips.txt")
var/tip_file = pick("strings/pvetips.txt")
var/list/tip_list = file2list(tip_file)
if(length(tip_file))
message = pick(tip_list)
else
CRASH("send_tip_of_the_round() failed somewhere")

if(message)
to_chat(world, SPAN_PURPLE("<b>Lore tidbit of the round: </b>[html_encode(message)]"))
to_chat(world, SPAN_PURPLE("<b>Tidbit of the round: </b>[html_encode(message)]"))
return TRUE
else
return FALSE
Expand Down

0 comments on commit da5e366

Please sign in to comment.