Skip to content

Commit

Permalink
Fix initiative token path (#39)
Browse files Browse the repository at this point in the history
The path seems to be case sensitive, so the initiative token couldn't be loaded on the current live version.
  • Loading branch information
tkroes authored Sep 8, 2024
1 parent 494909f commit 3d04920
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/frames/packTokenInitiative.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//defines available frames
availableFrames = [
{name:'Initiative Frame', src:'/img/frames/token/Initiative/initiative.png'}
{name:'Initiative Frame', src:'/img/frames/token/initiative/initiative.png'}
];
//disables/enables the "Load Frame Version" button
document.querySelector('#loadFrameVersion').disabled = false;
Expand All @@ -26,4 +26,4 @@ document.querySelector('#loadFrameVersion').onclick = async function() {
});
}
//loads available frames
loadFramePack();
loadFramePack();

0 comments on commit 3d04920

Please sign in to comment.