diff --git a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg index 48e9d35..7835f2d 100644 --- a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg +++ b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg @@ -259,7 +259,7 @@ Centering On Player Zoom Level = 0.15 # Setting type: Single # Default value: 0 # Acceptable value range: From 0 to 15 -Main map zoom = 1.588901 +Main map zoom = 4.221908 ## The keyboard shortcut to peek at the map # Setting type: KeyboardShortcut diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json b/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json index a3f9489..ccddc0b 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json @@ -4,8 +4,8 @@ "KeyUses": 10, "KeycardUses": 6, "ContainersDropChance": { - "578f8778245977358849a9b5": 5, - "578f87b7245977356274f2cd": 2 + "578f8778245977358849a9b5": 8, + "578f87b7245977356274f2cd": 5 }, "BotDropChance": 0, "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"] diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js index 612268c..0775d05 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js @@ -95,8 +95,8 @@ class Mod { const dropchance = containers[containerId]; this.addToStaticLoot(container, containerId, skeletonKeyId, 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"); diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts index 67cc700..fdf4568 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts @@ -134,11 +134,12 @@ class Mod implements IPostDBLoadMod, IPostSptLoadMod { const dropchance = containers[containerId]; 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 } public postSptLoad(container: DependencyContainer): void