summaryrefslogtreecommitdiff
path: root/src/game-server/command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/command.cpp')
-rw-r--r--src/game-server/command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/command.cpp b/src/game-server/command.cpp
index 5e87f9f6..e80b9f98 100644
--- a/src/game-server/command.cpp
+++ b/src/game-server/command.cpp
@@ -256,7 +256,7 @@ static void ban(Character *from, Character *ch, const std::string &duration)
switch (duration[duration.length() - 1])
{
case 'd': d = d * 24; // nobreak
- case 'h': d = d * 60;
+ case 'h': d = d * 60; break;
}
accountHandler->banCharacter(ch, d);
}