From fa9f51145689d785777ecc061d909a9941b30985 Mon Sep 17 00:00:00 2001 From: Erthilo Date: Tue, 5 Jun 2012 05:16:35 +0100 Subject: [PATCH] Fixes moderators being able to make news posts. --- code/game/player/news.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/player/news.dm b/code/game/player/news.dm index c868a9974d8..88bbb11960b 100644 --- a/code/game/player/news.dm +++ b/code/game/player/news.dm @@ -201,7 +201,7 @@ client/proc/remove_news(ID as num) display_all_news_list() client/proc/edit_news(ID as num) - if(!src.holder) + if(!src.holder || src.holder.level <= 0) src << "You tried to modify the news, but you're not an admin!" return