summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2025-02-10 20:24:28 +0100
committerGitHub <noreply@github.com>2025-02-10 20:24:28 +0100
commit787b4e4efe8c81e82e3926cb3a51a96bfa97af2a (patch)
tree6ad35fa5ddf3570ded069e87bb0a9b8aa048df13 /src
parent017cfb7b4bf17417a9e9564e2fc75fb6ac143bdc (diff)
fix(CI/Codestyle): correct double semicolon check (#21388)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Commands/cs_worldstate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_worldstate.cpp b/src/server/scripts/Commands/cs_worldstate.cpp
index 7c1887b1c1..40b37d6c5c 100644
--- a/src/server/scripts/Commands/cs_worldstate.cpp
+++ b/src/server/scripts/Commands/cs_worldstate.cpp
@@ -83,7 +83,7 @@ public:
handler->PSendSysMessage("Invalid subphase, see \".worldstate sunsreach subphase\" for usage");
return false;
}
- sWorldState->HandleSunsReachSubPhaseTransition(subphase);;
+ sWorldState->HandleSunsReachSubPhaseTransition(subphase);
handler->PSendSysMessage(sWorldState->GetSunsReachPrintout());
return true;
}