From 5c7bf62ca3204c6f8b91f1bd9178cb638e184f5a Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Tue, 29 Jan 2013 21:50:36 +0100 Subject: Silenced some eclipse warnings --- src/game-server/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game-server/command.cpp') diff --git a/src/game-server/command.cpp b/src/game-server/command.cpp index 5e87f9f..e80b9f9 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); } -- cgit