From c4653e6f5ed3a693454250cf127eb5dcf11d759c Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 12 Oct 2017 11:37:04 -0400 Subject: [PATCH 1/2] Fix world/Topic calling the wrong handler proc (#31610) --- code/game/world.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/world.dm b/code/game/world.dm index 5fe674cb7f..5cb459c2d0 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -133,7 +133,7 @@ GLOBAL_PROTECT(security_mode) return handler = new handler() - return handler.Run(input) + return handler.TryRun(input) /world/proc/AnnouncePR(announcement, list/payload) var/static/list/PRcounts = list() //PR id -> number of times announced this round