Skip to content

Commit

Permalink
fix script generating spell names
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Oct 10, 2024
1 parent a0ea5ab commit f1c0f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _transformers/helpers/stems.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function handleSpells(spells) {
const spellData = spells.reduce((prev, s) => {
const baseSpell = s.spell;

baseSpell.spellName ??= s._gameId;
baseSpell.spellName ||= s._gameId;
baseSpell.spellMeta ||= {};
baseSpell.spellMeta.spellRef ||= s._gameId;

Expand Down
2 changes: 1 addition & 1 deletion mods/BaseGameContent.rairmod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "BaseGameContent",
"author": "Seiyria",
"version": 1,
"savedAt": 1728502223072,
"savedAt": 1728502225390,
"dependencies": []
},
"npcs": [
Expand Down

0 comments on commit f1c0f50

Please sign in to comment.