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 ////////////////////////////////////////////////////////////////////////