Skip to content

Commit

Permalink
lint: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
surged20 committed Aug 14, 2023
1 parent 39f7772 commit 0668346
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/module/wjmais.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ function configProperties() {

async function openQuickReference() {
const pack = await game.packs.get("wjmais.quickref");
const quickref = pack.index.getName("Wildjammer Quick Reference");
if (quickref) {
const quickrefDocument = await pack.getDocument(quickref._id);
quickrefDocument.sheet.render(true);
}
const quickref = pack.index.getName("Wildjammer Quick Reference");
if (quickref) {
const quickrefDocument = await pack.getDocument(quickref._id);
quickrefDocument.sheet.render(true);
}
}

function registerKeys() {
registerMovementKey();

game.keybindings.register("wjmais", "openQuickReference", {
name: "SETTINGS.WJMAIS.OpenQuickReferenceN",
hint: "SETTINGS.WJMAIS.OpenQuickReferenceH",
Expand Down

0 comments on commit 0668346

Please sign in to comment.