diff --git a/config/AcediaFixes.ini b/config/AcediaFixes.ini index 227a96c..964bd70 100644 --- a/config/AcediaFixes.ini +++ b/config/AcediaFixes.ini @@ -305,4 +305,25 @@ maxGameSpeedUpdatesAmount=3 ; (that isn't `KFGameType`) that relies on `Tick` event. ; Note, however, that in order to keep this fix working properly, ; it's on you to make sure `KFGameType.Tick()` logic isn't executed. -disableTick=true \ No newline at end of file +disableTick=true + +; This feature fixes different instances of log spam by the killing floor +; with various warnings and errors. Some of them have actual underlying bugs +; that need to be fixed, but a lot seem to be just a byproduct of dead and +; abandoned features or simple negligence. +; Whatever the case, now that TWI will no longer make any new changes to +; the game a lot of them do not serve any purpose and simply pollute +; log files. We try to get rid of at least some of them. +; Since changes we make do not actually have gameplay effect and +; are more aimed at convenience of server owners, our philosophy with the +; changes will be to avoid solutions that are way too "hacky" and prefer some +; message spam getting through to the possibility of some unexpected gameplay +; effects as far as vanilla game is concerned. +[AcediaFixes.FixLogSpam] +autoEnable=true +; This optionresponsible for fixing log spam +; due to picking up dropped weapons without set `inventory` variable. +fixPickupSpam=true +; This option is responsible for fixing log spam due to missing +; `ShopVolume`s missing `WeaponLocker` in the `myTrader` variable. +fixTraderSpam=true \ No newline at end of file