Skip to content

Commit

Permalink
This should fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
diabeatz96 committed Aug 19, 2024
1 parent b75db1c commit 2be300a
Show file tree
Hide file tree
Showing 42 changed files with 127 additions and 62 deletions.
26 changes: 8 additions & 18 deletions module/sheets/actor-sheet.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ _updateAgendaAbility(event) {
}

async _performRoll(skill, useDivineAgony, teamwork, setup, hard, extraDice) {
const TWIST = new foundry.dice.MersenneTwister(Date.now());
const baseDice = this.actor.system.skills[skill].value;
let totalDice = baseDice + extraDice + (teamwork ? 1 : 0) + (setup ? 1 : 0);

Expand Down Expand Up @@ -455,7 +454,6 @@ _updateAgendaAbility(event) {
}

async _performPsycheRoll(additionalDice, hardRoll) {
const TWIST = new foundry.dice.MersenneTwister(Date.now());
const psyche = this.actor.system.psyche || 1;
const totalDice = Math.max(psyche + additionalDice, 0); // Ensure totalDice is not below 0
console.log(`Total dice: ${totalDice}`);
Expand Down Expand Up @@ -627,10 +625,8 @@ _updateAgendaAbility(event) {
event.preventDefault();

// Manually roll 1d6 for the mark
const TWIST = new foundry.dice.MersenneTwister(Date.now());
const roll = new Roll('1d6');
roll.evaluateSync({strict: false});
let markRoll = Array(roll.dice[0].number).fill(roll.dice[0].faces).reduce((acc, f) => acc + Math.ceil(TWIST.random() * f), roll.total);
const roll = await new Roll('1d6').roll({async: true});
let markRoll = roll.total;
let markIndex = markRoll - 1;

console.log(markRoll);
Expand All @@ -648,24 +644,19 @@ _updateAgendaAbility(event) {
const existingMark = sinMarks.find(mark => mark.startsWith(sinMark.name));
if (existingMark) {
// Manually roll 1d6 for the ability
let abilityRoll;
let newAbility;
do {
let abilityRoll = new Roll('1d6');
abilityRoll.evaluateSync({strict: false});
abilityRoll = Array(abilityRoll.dice[0].number).fill(abilityRoll.dice[0].faces).reduce((acc, f) => acc + Math.ceil(TWIST.random() * f), abilityRoll.total);
newAbility = sinMark.abilities[abilityRoll - 1];
const abilityRoll = await new Roll('1d6').roll({async: true});
newAbility = sinMark.abilities[abilityRoll.total - 1];
} while (existingMark.includes(newAbility));

// Add the new ability to the existing mark
sinMarks[sinMarks.indexOf(existingMark)] += `, ${newAbility}`;
} else {
// Manually roll 1d6 for the ability
let abilityRoll = new Roll('1d6');
abilityRoll.evaluateSync({strict: false});
abilityRoll = Array(abilityRoll.dice[0].number).fill(abilityRoll.dice[0].faces).reduce((acc, f) => acc + Math.ceil(TWIST.random() * f), abilityRoll.total);
const abilityRoll = await new Roll('1d6').roll({async: true});
const newAbility = sinMark.abilities[abilityRoll.total - 1];
console.log(sinMark);
const newAbility = sinMark.abilities[abilityRoll - 1];

// Format the sinMark as "Name - Ability"
const formattedSinMark = `${sinMark.name} - ${newAbility}`;
Expand All @@ -675,9 +666,8 @@ _updateAgendaAbility(event) {
}

// Update the actor with the new sinMarks array
this.actor.update({ 'system.currentSinMarks': sinMarks }).then(() => {
this.render(false); // Re-render the sheet to reflect changes
});
await this.actor.update({ 'system.currentSinMarks': sinMarks });
this.render(false); // Re-render the sheet to reflect changes
}

async _deleteSinMark(event) {
Expand Down
Binary file removed packs/agenda/000005.ldb
Binary file not shown.
Binary file removed packs/agenda/000013.ldb
Binary file not shown.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packs/agenda/CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MANIFEST-000017
MANIFEST-000024
8 changes: 3 additions & 5 deletions packs/agenda/LOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
2024/08/18-09:27:15.754026 ffff7efdf120 Recovering log #16
2024/08/18-09:27:15.754728 ffff7efdf120 Level-0 table #18: started
2024/08/18-09:27:15.791725 ffff7efdf120 Level-0 table #18: 15276 bytes OK
2024/08/18-09:27:15.908693 ffff7efdf120 Delete type=3 #15
2024/08/18-09:27:15.909207 ffff7efdf120 Delete type=0 #16
2024/08/18-23:27:21.363475 ffff7dfbf120 Recovering log #20
2024/08/18-23:27:21.396914 ffff7dfbf120 Delete type=0 #20
2024/08/18-23:27:21.397180 ffff7dfbf120 Delete type=3 #17
27 changes: 24 additions & 3 deletions packs/agenda/LOG.old
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
2024/08/18-09:22:53.780265 ffff7ffff120 Recovering log #14
2024/08/18-09:22:53.816435 ffff7ffff120 Delete type=3 #12
2024/08/18-09:22:53.816667 ffff7ffff120 Delete type=0 #14
2024/08/18-09:27:15.754026 ffff7efdf120 Recovering log #16
2024/08/18-09:27:15.754728 ffff7efdf120 Level-0 table #18: started
2024/08/18-09:27:15.791725 ffff7efdf120 Level-0 table #18: 15276 bytes OK
2024/08/18-09:27:15.908693 ffff7efdf120 Delete type=3 #15
2024/08/18-09:27:15.909207 ffff7efdf120 Delete type=0 #16
2024/08/18-23:19:02.051048 ffff7d6ae120 Level-0 table #21: started
2024/08/18-23:19:02.051144 ffff7d6ae120 Level-0 table #21: 0 bytes OK
2024/08/18-23:19:02.060529 ffff7d6ae120 Delete type=0 #19
2024/08/18-23:19:02.137173 ffff7d6ae120 Manual compaction at level-0 from '!items!1PnBSz1PZVcYKaWa' @ 72057594037927935 : 1 .. '!items!umnOFhEQgDzG2eaF' @ 0 : 0; will stop at '!items!umnOFhEQgDzG2eaF' @ 48 : 1
2024/08/18-23:19:02.137241 ffff7d6ae120 Compacting 2@0 + 0@1 files
2024/08/18-23:19:02.148337 ffff7d6ae120 Generated table #22@0: 14 keys, 15276 bytes
2024/08/18-23:19:02.148413 ffff7d6ae120 Compacted 2@0 + 0@1 files => 15276 bytes
2024/08/18-23:19:02.169706 ffff7d6ae120 compacted to: files[ 0 1 1 0 0 0 0 ]
2024/08/18-23:19:02.170712 ffff7d6ae120 Delete type=2 #18
2024/08/18-23:19:02.171133 ffff7d6ae120 Delete type=2 #13
2024/08/18-23:19:02.200793 ffff7d6ae120 Manual compaction at level-0 from '!items!umnOFhEQgDzG2eaF' @ 48 : 1 .. '!items!umnOFhEQgDzG2eaF' @ 0 : 0; will stop at (end)
2024/08/18-23:19:02.259954 ffff7d6ae120 Manual compaction at level-1 from '!items!1PnBSz1PZVcYKaWa' @ 72057594037927935 : 1 .. '!items!umnOFhEQgDzG2eaF' @ 0 : 0; will stop at '!items!umnOFhEQgDzG2eaF' @ 48 : 1
2024/08/18-23:19:02.260018 ffff7d6ae120 Compacting 1@1 + 1@2 files
2024/08/18-23:19:02.269741 ffff7d6ae120 Generated table #23@1: 14 keys, 15276 bytes
2024/08/18-23:19:02.269815 ffff7d6ae120 Compacted 1@1 + 1@2 files => 15276 bytes
2024/08/18-23:19:02.282878 ffff7d6ae120 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/08/18-23:19:02.283751 ffff7d6ae120 Delete type=2 #5
2024/08/18-23:19:02.284248 ffff7d6ae120 Delete type=2 #22
2024/08/18-23:19:02.311338 ffff7d6ae120 Manual compaction at level-1 from '!items!umnOFhEQgDzG2eaF' @ 48 : 1 .. '!items!umnOFhEQgDzG2eaF' @ 0 : 0; will stop at (end)
Binary file removed packs/agenda/MANIFEST-000017
Binary file not shown.
Binary file added packs/agenda/MANIFEST-000024
Binary file not shown.
Binary file removed packs/blasphemy/000005.ldb
Binary file not shown.
Binary file removed packs/blasphemy/000013.ldb
Binary file not shown.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packs/blasphemy/CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MANIFEST-000017
MANIFEST-000024
8 changes: 3 additions & 5 deletions packs/blasphemy/LOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
2024/08/18-09:27:15.930496 ffff7dfbf120 Recovering log #16
2024/08/18-09:27:15.931980 ffff7dfbf120 Level-0 table #18: started
2024/08/18-09:27:15.981419 ffff7dfbf120 Level-0 table #18: 52016 bytes OK
2024/08/18-09:27:16.110943 ffff7dfbf120 Delete type=3 #15
2024/08/18-09:27:16.111490 ffff7dfbf120 Delete type=0 #16
2024/08/18-23:27:21.410404 ffff7efdf120 Recovering log #20
2024/08/18-23:27:21.438249 ffff7efdf120 Delete type=0 #20
2024/08/18-23:27:21.438532 ffff7efdf120 Delete type=3 #17
27 changes: 24 additions & 3 deletions packs/blasphemy/LOG.old
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
2024/08/18-09:22:53.828980 ffff8deaf120 Recovering log #14
2024/08/18-09:22:53.861405 ffff8deaf120 Delete type=3 #12
2024/08/18-09:22:53.861804 ffff8deaf120 Delete type=0 #14
2024/08/18-09:27:15.930496 ffff7dfbf120 Recovering log #16
2024/08/18-09:27:15.931980 ffff7dfbf120 Level-0 table #18: started
2024/08/18-09:27:15.981419 ffff7dfbf120 Level-0 table #18: 52016 bytes OK
2024/08/18-09:27:16.110943 ffff7dfbf120 Delete type=3 #15
2024/08/18-09:27:16.111490 ffff7dfbf120 Delete type=0 #16
2024/08/18-23:19:02.034951 ffff7d6ae120 Level-0 table #21: started
2024/08/18-23:19:02.035102 ffff7d6ae120 Level-0 table #21: 0 bytes OK
2024/08/18-23:19:02.044112 ffff7d6ae120 Delete type=0 #19
2024/08/18-23:19:02.082367 ffff7d6ae120 Manual compaction at level-0 from '!folders!FWZZgy9tnHSHa9tk' @ 72057594037927935 : 1 .. '!items!yotw9uAVluGmTHO4' @ 0 : 0; will stop at '!items!yotw9uAVluGmTHO4' @ 90 : 0
2024/08/18-23:19:02.082431 ffff7d6ae120 Compacting 2@0 + 0@1 files
2024/08/18-23:19:02.099260 ffff7d6ae120 Generated table #22@0: 84 keys, 52016 bytes
2024/08/18-23:19:02.099333 ffff7d6ae120 Compacted 2@0 + 0@1 files => 52016 bytes
2024/08/18-23:19:02.110098 ffff7d6ae120 compacted to: files[ 0 1 1 0 0 0 0 ]
2024/08/18-23:19:02.111051 ffff7d6ae120 Delete type=2 #18
2024/08/18-23:19:02.111618 ffff7d6ae120 Delete type=2 #13
2024/08/18-23:19:02.200612 ffff7d6ae120 Manual compaction at level-0 from '!items!yotw9uAVluGmTHO4' @ 90 : 0 .. '!items!yotw9uAVluGmTHO4' @ 0 : 0; will stop at (end)
2024/08/18-23:19:02.200969 ffff7d6ae120 Manual compaction at level-1 from '!folders!FWZZgy9tnHSHa9tk' @ 72057594037927935 : 1 .. '!items!yotw9uAVluGmTHO4' @ 0 : 0; will stop at '!items!yotw9uAVluGmTHO4' @ 183 : 1
2024/08/18-23:19:02.201019 ffff7d6ae120 Compacting 1@1 + 1@2 files
2024/08/18-23:19:02.219836 ffff7d6ae120 Generated table #23@1: 84 keys, 52016 bytes
2024/08/18-23:19:02.219920 ffff7d6ae120 Compacted 1@1 + 1@2 files => 52016 bytes
2024/08/18-23:19:02.232807 ffff7d6ae120 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/08/18-23:19:02.233719 ffff7d6ae120 Delete type=2 #5
2024/08/18-23:19:02.234301 ffff7d6ae120 Delete type=2 #22
2024/08/18-23:19:02.311151 ffff7d6ae120 Manual compaction at level-1 from '!items!yotw9uAVluGmTHO4' @ 183 : 1 .. '!items!yotw9uAVluGmTHO4' @ 0 : 0; will stop at (end)
Binary file removed packs/blasphemy/MANIFEST-000017
Binary file not shown.
Binary file added packs/blasphemy/MANIFEST-000024
Binary file not shown.
Binary file removed packs/items/000005.ldb
Binary file not shown.
Binary file removed packs/items/000013.ldb
Binary file not shown.
Binary file removed packs/items/000016.ldb
Binary file not shown.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packs/items/CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MANIFEST-000018
MANIFEST-000025
8 changes: 3 additions & 5 deletions packs/items/LOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
2024/08/18-09:27:15.586306 ffff7e7cf120 Recovering log #17
2024/08/18-09:27:15.587036 ffff7e7cf120 Level-0 table #19: started
2024/08/18-09:27:15.633085 ffff7e7cf120 Level-0 table #19: 13709 bytes OK
2024/08/18-09:27:15.736517 ffff7e7cf120 Delete type=3 #15
2024/08/18-09:27:15.736923 ffff7e7cf120 Delete type=0 #17
2024/08/18-23:27:21.324433 ffff7e7cf120 Recovering log #21
2024/08/18-23:27:21.348922 ffff7e7cf120 Delete type=0 #21
2024/08/18-23:27:21.349219 ffff7e7cf120 Delete type=3 #18
30 changes: 25 additions & 5 deletions packs/items/LOG.old
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
2024/08/18-09:22:53.731206 ffff8ce8f120 Recovering log #14
2024/08/18-09:22:53.731452 ffff8ce8f120 Level-0 table #16: started
2024/08/18-09:22:53.741199 ffff8ce8f120 Level-0 table #16: 901 bytes OK
2024/08/18-09:22:53.764580 ffff8ce8f120 Delete type=3 #12
2024/08/18-09:22:53.764918 ffff8ce8f120 Delete type=0 #14
2024/08/18-09:27:15.586306 ffff7e7cf120 Recovering log #17
2024/08/18-09:27:15.587036 ffff7e7cf120 Level-0 table #19: started
2024/08/18-09:27:15.633085 ffff7e7cf120 Level-0 table #19: 13709 bytes OK
2024/08/18-09:27:15.736517 ffff7e7cf120 Delete type=3 #15
2024/08/18-09:27:15.736923 ffff7e7cf120 Delete type=0 #17
2024/08/18-23:19:02.044323 ffff7d6ae120 Level-0 table #22: started
2024/08/18-23:19:02.044430 ffff7d6ae120 Level-0 table #22: 0 bytes OK
2024/08/18-23:19:02.050879 ffff7d6ae120 Delete type=0 #20
2024/08/18-23:19:02.111983 ffff7d6ae120 Manual compaction at level-0 from '!folders!DYa1yCl9CNfOahIN' @ 72057594037927935 : 1 .. '!items!zUOSvdFDFvXZqROE' @ 0 : 0; will stop at '!items!zUOSvdFDFvXZqROE' @ 90 : 0
2024/08/18-23:19:02.112062 ffff7d6ae120 Compacting 3@0 + 0@1 files
2024/08/18-23:19:02.122658 ffff7d6ae120 Generated table #23@0: 48 keys, 13709 bytes
2024/08/18-23:19:02.122726 ffff7d6ae120 Compacted 3@0 + 0@1 files => 13709 bytes
2024/08/18-23:19:02.135024 ffff7d6ae120 compacted to: files[ 0 1 1 0 0 0 0 ]
2024/08/18-23:19:02.135920 ffff7d6ae120 Delete type=2 #13
2024/08/18-23:19:02.136372 ffff7d6ae120 Delete type=2 #16
2024/08/18-23:19:02.136774 ffff7d6ae120 Delete type=2 #19
2024/08/18-23:19:02.200699 ffff7d6ae120 Manual compaction at level-0 from '!items!zUOSvdFDFvXZqROE' @ 90 : 0 .. '!items!zUOSvdFDFvXZqROE' @ 0 : 0; will stop at (end)
2024/08/18-23:19:02.234751 ffff7d6ae120 Manual compaction at level-1 from '!folders!DYa1yCl9CNfOahIN' @ 72057594037927935 : 1 .. '!items!zUOSvdFDFvXZqROE' @ 0 : 0; will stop at '!items!zUOSvdFDFvXZqROE' @ 136 : 1
2024/08/18-23:19:02.234826 ffff7d6ae120 Compacting 1@1 + 1@2 files
2024/08/18-23:19:02.245974 ffff7d6ae120 Generated table #24@1: 48 keys, 13709 bytes
2024/08/18-23:19:02.246037 ffff7d6ae120 Compacted 1@1 + 1@2 files => 13709 bytes
2024/08/18-23:19:02.258272 ffff7d6ae120 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/08/18-23:19:02.259104 ffff7d6ae120 Delete type=2 #5
2024/08/18-23:19:02.259589 ffff7d6ae120 Delete type=2 #23
2024/08/18-23:19:02.311241 ffff7d6ae120 Manual compaction at level-1 from '!items!zUOSvdFDFvXZqROE' @ 136 : 1 .. '!items!zUOSvdFDFvXZqROE' @ 0 : 0; will stop at (end)
Binary file removed packs/items/MANIFEST-000018
Binary file not shown.
Binary file added packs/items/MANIFEST-000025
Binary file not shown.
Binary file removed packs/tables/000005.ldb
Binary file not shown.
Binary file removed packs/tables/000015.ldb
Binary file not shown.
Binary file removed packs/tables/000018.ldb
Binary file not shown.
Binary file removed packs/tables/000019.log
Binary file not shown.
Binary file added packs/tables/000023.ldb
Binary file not shown.
Empty file added packs/tables/000025.log
Empty file.
2 changes: 1 addition & 1 deletion packs/tables/CURRENT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MANIFEST-000017
MANIFEST-000024
8 changes: 3 additions & 5 deletions packs/tables/LOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
2024/08/18-09:27:16.130260 ffff7f7ef120 Recovering log #16
2024/08/18-09:27:16.130706 ffff7f7ef120 Level-0 table #18: started
2024/08/18-09:27:16.178918 ffff7f7ef120 Level-0 table #18: 4984 bytes OK
2024/08/18-09:27:16.298348 ffff7f7ef120 Delete type=0 #16
2024/08/18-09:27:16.298816 ffff7f7ef120 Delete type=3 #14
2024/08/18-23:27:21.451497 ffff7f7ef120 Recovering log #20
2024/08/18-23:27:21.478466 ffff7f7ef120 Delete type=0 #20
2024/08/18-23:27:21.478698 ffff7f7ef120 Delete type=3 #17
30 changes: 25 additions & 5 deletions packs/tables/LOG.old
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
2024/08/18-09:22:53.878645 ffff8d69f120 Recovering log #13
2024/08/18-09:22:53.878878 ffff8d69f120 Level-0 table #15: started
2024/08/18-09:22:53.889036 ffff8d69f120 Level-0 table #15: 978 bytes OK
2024/08/18-09:22:53.961188 ffff8d69f120 Delete type=3 #12
2024/08/18-09:22:53.961514 ffff8d69f120 Delete type=0 #13
2024/08/18-09:27:16.130260 ffff7f7ef120 Recovering log #16
2024/08/18-09:27:16.130706 ffff7f7ef120 Level-0 table #18: started
2024/08/18-09:27:16.178918 ffff7f7ef120 Level-0 table #18: 4984 bytes OK
2024/08/18-09:27:16.298348 ffff7f7ef120 Delete type=0 #16
2024/08/18-09:27:16.298816 ffff7f7ef120 Delete type=3 #14
2024/08/18-23:19:02.060772 ffff7d6ae120 Level-0 table #21: started
2024/08/18-23:19:02.072308 ffff7d6ae120 Level-0 table #21: 5529 bytes OK
2024/08/18-23:19:02.081896 ffff7d6ae120 Delete type=0 #19
2024/08/18-23:19:02.171438 ffff7d6ae120 Manual compaction at level-0 from '!tables!XY3o3oqawjUe6Wba' @ 72057594037927935 : 1 .. '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 0 : 0; will stop at '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 62 : 0
2024/08/18-23:19:02.171495 ffff7d6ae120 Compacting 3@0 + 0@1 files
2024/08/18-23:19:02.185276 ffff7d6ae120 Generated table #22@0: 33 keys, 5100 bytes
2024/08/18-23:19:02.185353 ffff7d6ae120 Compacted 3@0 + 0@1 files => 5100 bytes
2024/08/18-23:19:02.198391 ffff7d6ae120 compacted to: files[ 0 1 1 0 0 0 0 ]
2024/08/18-23:19:02.199338 ffff7d6ae120 Delete type=2 #21
2024/08/18-23:19:02.199852 ffff7d6ae120 Delete type=2 #18
2024/08/18-23:19:02.200284 ffff7d6ae120 Delete type=2 #15
2024/08/18-23:19:02.200882 ffff7d6ae120 Manual compaction at level-0 from '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 62 : 0 .. '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 0 : 0; will stop at (end)
2024/08/18-23:19:02.284643 ffff7d6ae120 Manual compaction at level-1 from '!tables!XY3o3oqawjUe6Wba' @ 72057594037927935 : 1 .. '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 0 : 0; will stop at '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 161 : 1
2024/08/18-23:19:02.284719 ffff7d6ae120 Compacting 1@1 + 1@2 files
2024/08/18-23:19:02.295586 ffff7d6ae120 Generated table #23@1: 33 keys, 5100 bytes
2024/08/18-23:19:02.295650 ffff7d6ae120 Compacted 1@1 + 1@2 files => 5100 bytes
2024/08/18-23:19:02.309536 ffff7d6ae120 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/08/18-23:19:02.310359 ffff7d6ae120 Delete type=2 #5
2024/08/18-23:19:02.310807 ffff7d6ae120 Delete type=2 #22
2024/08/18-23:19:02.311439 ffff7d6ae120 Manual compaction at level-1 from '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 161 : 1 .. '!tables.results!z9VPZiT6MhJzjO6v.vwR7xQw1HrRWhrQn' @ 0 : 0; will stop at (end)
Binary file removed packs/tables/MANIFEST-000017
Binary file not shown.
Binary file added packs/tables/MANIFEST-000024
Binary file not shown.
4 changes: 2 additions & 2 deletions system.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"thumbnail": "systems/cain/assets/cain.png"
}
],
"version": "1.0.5",
"version": "1.0.6",
"compatibility": {
"minimum": 12,
"minimum": 11,
"verified": "12"
},
"esmodules": ["module/cain.mjs"],
Expand Down
5 changes: 3 additions & 2 deletions templates/actor/parts/actor-features.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
.flex-group .demon-checkbox {
margin-right: 10px;
}
</style>

<h3 class='resource-header'>Cat Level</h3>
Expand Down Expand Up @@ -179,8 +180,8 @@
<input id="teamwork" type="checkbox" name="teamwork" value="0">
</div>
<div class="resource">
<label for="setup">Setup</label>
<input id="setup" type="checkbox" name="setup" value="0">
<label for="setupPage">Setup</label>
<input id="setupPage" type="checkbox" name="setup" value="0">
</div>
<div class="resource">
<label for="hard">Hard</label>
Expand Down

0 comments on commit 2be300a

Please sign in to comment.