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)