From 22d7ff292c70b139d16cfc99163e58f8a98c5722 Mon Sep 17 00:00:00 2001 From: John Johns Date: Sun, 6 Jun 2021 14:52:56 -0700 Subject: [PATCH] Fix misplaced insert of DelayArbitration command --- .../FeatureLib/pfConsole/pfConsoleCommands.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Sources/Plasma/FeatureLib/pfConsole/pfConsoleCommands.cpp b/Sources/Plasma/FeatureLib/pfConsole/pfConsoleCommands.cpp index 6a140eb4..38daf6b9 100644 --- a/Sources/Plasma/FeatureLib/pfConsole/pfConsoleCommands.cpp +++ b/Sources/Plasma/FeatureLib/pfConsole/pfConsoleCommands.cpp @@ -447,15 +447,6 @@ PF_CONSOLE_BASE_CMD( SampleCmd3, "int, ...", "Sample command #3" ) } } -PF_CONSOLE_CMD(Logic, - DelayArbitration, - "int millis", - "Simulates network delay for LogicMod arbitration") -{ - int ms = params[0]; - plLogicModBase::SetArbitrationDelay(ms); -} - #endif // LIMIT_CONSOLE_COMMANDS @@ -3345,6 +3336,15 @@ PF_CONSOLE_CMD(Logic, WriteDetectorLog, "", "Write detector log to logfile") DetectorDoLogfile(); } +PF_CONSOLE_CMD(Logic, + DelayArbitration, + "int millis", + "Simulates network delay for LogicMod arbitration") +{ + int ms = params[0]; + plLogicModBase::SetArbitrationDelay(ms); +} + #endif // LIMIT_CONSOLE_COMMANDS ////////////////////////////////////////////////////////////////////////