chore: rewrite gruzzling droptable to scathing/mocking whispers
All checks were successful
Build / build (push) Successful in 1m18s
Build / build (pull_request) Successful in 1m26s

This commit is contained in:
Sainan 2025-04-18 01:35:37 +02:00
parent 79492efbb4
commit 6e97dc20b0

View File

@ -700,6 +700,12 @@ export const addMissionRewards = async (
if (strippedItems) {
for (const si of strippedItems) {
if (si.DropTable == "/Lotus/Types/DropTables/ManInTheWall/MITWGruzzlingArcanesDropTable") {
logger.debug(
`rewriting ${si.DropTable} to /Lotus/Types/DropTables/EntratiLabDropTables/DoppelgangerDropTable`
);
si.DropTable = "/Lotus/Types/DropTables/EntratiLabDropTables/DoppelgangerDropTable";
}
const droptables = ExportEnemies.droptables[si.DropTable] ?? [];
if (si.DROP_MOD) {
const modDroptable = droptables.find(x => x.type == "mod");