Compare commits

..

No commits in common. "main" and "1.0.0" have entirely different histories.
main ... 1.0.0

2 changed files with 2 additions and 6 deletions

View File

@ -2,7 +2,7 @@
"name": "RaiderSpawnFix", "name": "RaiderSpawnFix",
"author": "Chomp", "author": "Chomp",
"version": "1.0.0", "version": "1.0.0",
"akiVersion": "2.2.x", "akiVersion": "2.1.0",
"license": "N/A", "license": "N/A",
"main": "modloader.js", "main": "modloader.js",
"contributors": ["StealthSuit", "CWX", "ThatGuyXIV"] "contributors": ["StealthSuit", "CWX", "ThatGuyXIV"]

View File

@ -5,7 +5,7 @@ class Mod
{ {
constructor() constructor()
{ {
Logger.info(`Loading: ${modName} 1.1.0`); Logger.info(`Loading: ${modName} 1.0.0`);
let changeCount = 0; let changeCount = 0;
const labsBosses = DatabaseServer.tables.locations.laboratory.base.BossLocationSpawn; const labsBosses = DatabaseServer.tables.locations.laboratory.base.BossLocationSpawn;
@ -15,7 +15,6 @@ class Mod
if (spawn1) if (spawn1)
{ {
spawn1.TriggerId = "00404"; spawn1.TriggerId = "00404";
spawn1.BossChance = 100;
changeCount++; changeCount++;
} }
@ -23,7 +22,6 @@ class Mod
if (spawn2) if (spawn2)
{ {
spawn2.TriggerId = "00409"; spawn2.TriggerId = "00409";
spawn2.BossChance = 100;
changeCount++; changeCount++;
} }
@ -31,7 +29,6 @@ class Mod
if (spawn3) if (spawn3)
{ {
spawn3.TriggerId = "autoId_00632_EXFIL"; spawn3.TriggerId = "autoId_00632_EXFIL";
spawn3.BossChance = 100;
changeCount++; changeCount++;
} }
@ -39,7 +36,6 @@ class Mod
if (spawn4) if (spawn4)
{ {
spawn4.TriggerId = "autoId_00000_D2_LEVER"; spawn4.TriggerId = "autoId_00000_D2_LEVER";
spawn4.BossChance = 100;
changeCount++; changeCount++;
} }