Skip to content

Commit

Permalink
Update npcdata.js
Browse files Browse the repository at this point in the history
revert accidental deletion during merge
  • Loading branch information
tureptor authored Apr 5, 2024
1 parent 006535b commit 17a7b13
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion npcdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const Biome = {
None: '',
};

const baseBiomes = ["Forest", "Hallow", "Caverns", "Desert", "Jungle", "Ocean", "Snow", "Mushroom"];
const biomes1 = [["Forest"], ["Hallow"], ["Caverns"], ["Space"], ["Desert"], ["Jungle"], ["Ocean"], ["Snow"], ["Mushroom"]];

const biomes2Natural = [
["Hallow", "Caverns"], ["Caverns", "Desert"], ["Caverns", "Jungle"], ["Caverns", "Ocean"], ["Caverns", "Snow"], ["Caverns", "Mushroom"],
['Space', 'Ocean'], ['Space', 'Forest'],
Expand Down Expand Up @@ -934,4 +937,4 @@ const modNpcs = {};
for (const [npcName, {mod}] of Object.entries(npcdict)) {
modNpcs[mod] ??= [];
modNpcs[mod].push(/** @type {keyof typeof npcdict} */(npcName));
}
}

0 comments on commit 17a7b13

Please # to comment.