From 7b5669febfc3b6b04f3a0af9d827064ac45eea7b Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Sat, 20 May 2023 19:51:12 +0300 Subject: [PATCH] make .editorconfig checker happy --- StartWave/Classes/StartWave.uc | 40 +++++++++++++++++----------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/StartWave/Classes/StartWave.uc b/StartWave/Classes/StartWave.uc index e7aec45..0a960c9 100644 --- a/StartWave/Classes/StartWave.uc +++ b/StartWave/Classes/StartWave.uc @@ -19,9 +19,9 @@ var config bool bStartWithTrader; var config E_LogLevel LogLevel; /** - * The boss override index. For the default boss list, 0-Hans, 1-Patty, 2-King FP, 3-Abomination. Negative - * values can be used to keep the boss spawn random. - */ +*** The boss override index. For the default boss list, 0-Hans, 1-Patty, 2-King FP, 3-Abomination. Negative +*** values can be used to keep the boss spawn random. +***/ var config int Boss; /********************************************************************************************************* @@ -181,9 +181,9 @@ function SetWave(int NewWaveNum, PlayerController PC, optional bool bSkipTraderT } /** - * Since the difficulty in Endless scales with the wave number, we need to update the difficulty when - * jumping between wave numbers to match the expected difficulty. - */ +*** Since the difficulty in Endless scales with the wave number, we need to update the difficulty when +*** jumping between wave numbers to match the expected difficulty. +***/ function UpdateEndlessDifficulty() { local KFGameInfo_Endless Endless; @@ -468,13 +468,13 @@ function UpdateTraderDurationTimer() } /** - * @brief Gets a bool from the launch command if available. - * - * @param Options - options passed in via the launch command - * @param ParseString - the variable we are looking for - * @param CurrentValue - the current value of the variable - * @return bool value of the option we are looking for - */ +*** @brief Gets a bool from the launch command if available. +*** +*** @param Options - options passed in via the launch command +*** @param ParseString - the variable we are looking for +*** @param CurrentValue - the current value of the variable +*** @return bool value of the option we are looking for +***/ static function bool GetBoolOption(string Options, string ParseString, bool CurrentValue) { local string InOpt; @@ -492,13 +492,13 @@ static function bool GetBoolOption(string Options, string ParseString, bool Curr } /** - * @brief Gets a string from the launch command if available. - * - * @param Options - options passed in via the launch command - * @param ParseString - the variable we are looking for - * @param CurrentValue - the current value of the variable - * @return string value of the option we are looking for - */ +*** @brief Gets a string from the launch command if available. +*** +*** @param Options - options passed in via the launch command +*** @param ParseString - the variable we are looking for +*** @param CurrentValue - the current value of the variable +*** @return string value of the option we are looking for +***/ static function string GetStringOption(string Options, string ParseString, string CurrentValue) { local string InOpt;