Undid Skeleton Key Spawn Changes; Disabled Scav Loot Spawning

This commit is contained in:
2025-01-07 02:09:03 -05:00
parent e74355df26
commit 7c9d3b246a
6 changed files with 10 additions and 10 deletions
@@ -7,6 +7,6 @@
"578f8778245977358849a9b5": 8,
"578f87b7245977356274f2cd": 5
},
"BotDropChance": 0,
"BotDropChance": 0.05,
"BannedBots": ["assault", "assaultgroup", "bear", "exusec", "usec", "pmcbear", "pmcbot", "pmcusec", "followerBully", "followerGluharAssault", "followerGluharScout", "followerGluharSecurity", "followerGluharSnipe", "followerKojaniy", "followerSanitar", "followerTagilla", "followerBirdEye", "followerBigPipe", "followerZryachiy", "followerTest", "followerBoar", "followerBoarClose1", "followerBoarClose2", "followerKolontayAssault", "followerKolontaySecurity"]
}
@@ -96,8 +96,8 @@ class Mod {
this.addToStaticLoot(container, containerId, skeletonKeyId, dropchance); // Adds the Skeleton Key to jackets
this.addToStaticLoot(container, containerId, keycardId, dropchance); // Adds the Skeleton Key to jackets
}
//this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses
//this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses
this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
}
postSptLoad(container) {
const db = container.resolve("DatabaseServer");
@@ -138,8 +138,8 @@ class Mod implements IPostDBLoadMod, IPostSptLoadMod
}
//this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses
//this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses
this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
}
public postSptLoad(container: DependencyContainer): void