From 4d61670f384fde9e4b52a87022b7c0a02f895308 Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Sat, 31 Jul 2021 07:19:42 -0500 Subject: [PATCH] add 1st Level spell to spell list - legacy --- client/homebrew/editor/snippetbar/snippetsLegacy/magic.gen.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/homebrew/editor/snippetbar/snippetsLegacy/magic.gen.js b/client/homebrew/editor/snippetbar/snippetsLegacy/magic.gen.js index 14dd5bd20..010ec9e9f 100644 --- a/client/homebrew/editor/snippetbar/snippetsLegacy/magic.gen.js +++ b/client/homebrew/editor/snippetbar/snippetsLegacy/magic.gen.js @@ -51,7 +51,7 @@ const spellNames = [ module.exports = { spellList : function(){ - const levels = ['Cantrips (0 Level)', '2nd Level', '3rd Level', '4th Level', '5th Level', '6th Level', '7th Level', '8th Level', '9th Level']; + const levels = ['Cantrips (0 Level)', '1st Level', '2nd Level', '3rd Level', '4th Level', '5th Level', '6th Level', '7th Level', '8th Level', '9th Level']; const content = _.map(levels, (level)=>{ const spells = _.map(_.sampleSize(spellNames, _.random(5, 15)), (spell)=>{ @@ -88,4 +88,4 @@ module.exports = { '\n\n\n' ].join('\n'); } -}; \ No newline at end of file +};