From ac8b64734b532a127626b682d68c15e5f5b0a609 Mon Sep 17 00:00:00 2001 From: cib Date: Sun, 19 May 2013 07:47:18 +0200 Subject: [PATCH] Fixed a few problems with newscasters. --- code/WorkInProgress/periodic_news.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/WorkInProgress/periodic_news.dm b/code/WorkInProgress/periodic_news.dm index 198b96fa4b9..92186869264 100644 --- a/code/WorkInProgress/periodic_news.dm +++ b/code/WorkInProgress/periodic_news.dm @@ -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)