version 3.0.1

This commit is contained in:
2023-06-19 01:02:36 -05:00
parent 0141b88c8e
commit af851a17a7
2 changed files with 10 additions and 3 deletions

View File

@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project badly attempts [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [3.0.1] - 2023-06-19
### Changed
- Lowered garbage collection times and range for dead bodies
## [3.0] - 2023-05-03 ## [3.0] - 2023-05-03
### Added ### Added

View File

@@ -69,8 +69,8 @@ disableRandomization[] = {};
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
corpseManagerMode = 1; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned corpseManagerMode = 1; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned
corpseRemovalMinTime = 600; corpseRemovalMinTime = 180;
corpseRemovalMaxTime = 900; corpseRemovalMaxTime = 300;
corpseLimit = 80; corpseLimit = 80;
wreckManagerMode = 0; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned wreckManagerMode = 0; //0 = None, 1 = All, 2 = None_But_Respawned, 3 = All_But_Respawned
@@ -78,7 +78,7 @@ wreckRemovalMinTime = 600;
wreckRemovalMaxTime = 900; wreckRemovalMaxTime = 900;
wreckLimit = 40; wreckLimit = 40;
minPlayerDistance = 600; minPlayerDistance = 500;
//-------------------------------------------BASE SETTINGS---------------------------------------------------------------// //-------------------------------------------BASE SETTINGS---------------------------------------------------------------//