From 597e3243190d835e5a439c445cef8f8ec839eeb8 Mon Sep 17 00:00:00 2001 From: Kinglykrab <89047260+Kinglykrab@users.noreply.github.com> Date: Sun, 8 May 2022 17:01:50 -0400 Subject: [PATCH] [Bug FIx] Fix #repop Command. (#2159) If you use no arguments, the command does not repop. --- zone/gm_commands/repop.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/gm_commands/repop.cpp b/zone/gm_commands/repop.cpp index 7a4f1dbcd..e1d4d6dbe 100755 --- a/zone/gm_commands/repop.cpp +++ b/zone/gm_commands/repop.cpp @@ -5,6 +5,8 @@ void command_repop(Client *c, const Seperator *sep) int arguments = sep->argnum; if (!arguments) { c->Message(Chat::White, "Zone depopped, repopping now."); + zone->Repop(); + zone->spawn2_timer.Trigger(); return; }