Fixed a few problems with newscasters.

This commit is contained in:
cib
2013-05-19 07:47:18 +02:00
parent b6231ec33b
commit ac8b64734b

View File

@@ -35,13 +35,13 @@
random_junk
cheesy_honkers
author = "Assistant Editor Carl Ritz"
channel_name = "Gibson Gazzette"
channel_name = "The Gibson Gazzette"
message = "Do cheesy honkers increase risk of having a miscarriage? Several health administrations say so!"
round_time = 60 * 15
net_block
author = "Assistant Editor Carl Ritz"
channel_name = "Gibson Gazzette"
channel_name = "The Gibson Gazzette"
message = "Several corporations banding together to block access to 'wetskrell.nt', site administrators claiming violation of net laws."
round_time = 60 * 50
@@ -85,7 +85,7 @@ var/global/tmp/announced_news_types = list()
proc/check_for_newscaster_updates(type)
for(var/subtype in typesof(type)-type)
var/datum/news_announcement/news = new subtype()
if(news.round_time * 10 >= world.time && !(subtype in announced_news_types))
if(news.round_time * 10 <= world.time && !(subtype in announced_news_types))
announced_news_types += subtype
announce_newscaster_news(news)