From 356f0fee5f4e9c73ceaed561b65bafb7fc5a0c06 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Tue, 8 Aug 2023 08:17:30 +0200 Subject: [PATCH] Various fixes and enhancents --- modules/hero6-combat.js | 50 ++++++++++++++++++++++++++++ packs/complications/000044.log | 0 packs/complications/CURRENT | 2 +- packs/complications/LOG | 16 ++++----- packs/complications/LOG.old | 16 ++++----- packs/complications/MANIFEST-000042 | Bin 135 -> 0 bytes packs/equipment/000044.log | 0 packs/equipment/CURRENT | 2 +- packs/equipment/LOG | 14 ++++---- packs/equipment/LOG.old | 14 ++++---- packs/equipment/MANIFEST-000042 | Bin 65 -> 0 bytes packs/maneuvers/000036.log | 0 packs/maneuvers/CURRENT | 2 +- packs/maneuvers/LOG | 16 ++++----- packs/maneuvers/LOG.old | 16 ++++----- packs/maneuvers/MANIFEST-000034 | Bin 134 -> 0 bytes packs/perks/000044.log | 0 packs/perks/CURRENT | 2 +- packs/perks/LOG | 16 ++++----- packs/perks/LOG.old | 16 ++++----- packs/perks/MANIFEST-000042 | Bin 134 -> 0 bytes packs/powers/000044.log | 0 packs/powers/CURRENT | 2 +- packs/powers/LOG | 16 ++++----- packs/powers/LOG.old | 16 ++++----- packs/powers/MANIFEST-000042 | Bin 135 -> 0 bytes packs/skills/000044.log | 0 packs/skills/CURRENT | 2 +- packs/skills/LOG | 16 ++++----- packs/skills/LOG.old | 16 ++++----- packs/skills/MANIFEST-000042 | Bin 135 -> 0 bytes packs/talents/000044.log | 0 packs/talents/CURRENT | 2 +- packs/talents/LOG | 16 ++++----- packs/talents/LOG.old | 16 ++++----- packs/talents/MANIFEST-000042 | Bin 134 -> 0 bytes packs/weapons/000044.log | 0 packs/weapons/CURRENT | 2 +- packs/weapons/LOG | 14 ++++---- packs/weapons/LOG.old | 14 ++++---- packs/weapons/MANIFEST-000042 | Bin 65 -> 0 bytes system.json | 4 +-- 42 files changed, 184 insertions(+), 134 deletions(-) delete mode 100644 packs/complications/000044.log delete mode 100644 packs/complications/MANIFEST-000042 delete mode 100644 packs/equipment/000044.log delete mode 100644 packs/equipment/MANIFEST-000042 delete mode 100644 packs/maneuvers/000036.log delete mode 100644 packs/maneuvers/MANIFEST-000034 delete mode 100644 packs/perks/000044.log delete mode 100644 packs/perks/MANIFEST-000042 delete mode 100644 packs/powers/000044.log delete mode 100644 packs/powers/MANIFEST-000042 delete mode 100644 packs/skills/000044.log delete mode 100644 packs/skills/MANIFEST-000042 delete mode 100644 packs/talents/000044.log delete mode 100644 packs/talents/MANIFEST-000042 delete mode 100644 packs/weapons/000044.log delete mode 100644 packs/weapons/MANIFEST-000042 diff --git a/modules/hero6-combat.js b/modules/hero6-combat.js index 54840f8..b6e526b 100644 --- a/modules/hero6-combat.js +++ b/modules/hero6-combat.js @@ -175,6 +175,56 @@ export class Hero6Combat extends Combat { } } + /* -------------------------------------------- */ + async previousRound() { + let hasCombatants = false + let nextRound = this.round + let advanceTime = 0 + let turn = this.turn === null ? null : 0; // Preserve the fact that it's no-one's turn currently. + let turnData = this.getFlag("world", "turnData") + + //console.log("Next round called....", nextRound, turnData) + while (!hasCombatants) { + if (this.settings.skipDefeated && (turn !== null)) { + turn = this.turns.findIndex(t => !t.isDefeated); + if (turn === -1) { + ui.notifications.warn("COMBAT.NoneRemaining", { localize: true }); + turn = 0; + } + } + advanceTime = -1 * (Math.max(this.turns.length - this.turn, 0) * CONFIG.time.turnTime); + advanceTime -= CONFIG.time.roundTime; + nextRound = nextRound -1 + //console.log("Next round called....2", nextRound, turnData) + turnData = this.getFlag("world", "turnData") + if (!turnData) { + turnData = { turnNumber: 0, segmentNumber: 12 } + this.setFlag("world", "turnData", turnData) + } + turnData = duplicate(turnData) + turnData.segmentNumber -= 1 + if (turnData.segmentNumber <= 0) { + turnData.segmentNumber = 12 + turnData.turnNumber-- + } + await this.setFlag("world", "turnData", turnData) + this.turnNumber = turnData.turnNumber; + this.segmentNumber = turnData.segmentNumber; + //console.log("Next round called....3", nextRound, turnData) + + // Re-compute init of actors + hasCombatants = await this.rebuildInitiative() + //console.log("Going round....", nextRound, hasCombatants) + } + + // Update the document, passing data through a hook first + const updateData = { round: nextRound, turn }; + const updateOptions = { advanceTime, direction: -1 }; + Hooks.callAll("combatRound", this, updateData, updateOptions); + console.log(this) + return this.update(updateData, updateOptions); + } + /* -------------------------------------------- */ async nextRound() { let hasCombatants = false diff --git a/packs/complications/000044.log b/packs/complications/000044.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/complications/CURRENT b/packs/complications/CURRENT index 8e0a062..a6d5883 100644 --- a/packs/complications/CURRENT +++ b/packs/complications/CURRENT @@ -1 +1 @@ -MANIFEST-000042 +MANIFEST-000046 diff --git a/packs/complications/LOG b/packs/complications/LOG index dcbf876..5272b24 100644 --- a/packs/complications/LOG +++ b/packs/complications/LOG @@ -1,8 +1,8 @@ -2023/08/07-22:18:14.000526 7f5afddfa6c0 Recovering log #40 -2023/08/07-22:18:14.012956 7f5afddfa6c0 Delete type=3 #38 -2023/08/07-22:18:14.012989 7f5afddfa6c0 Delete type=0 #40 -2023/08/07-23:27:51.013130 7f58677fe6c0 Level-0 table #45: started -2023/08/07-23:27:51.013173 7f58677fe6c0 Level-0 table #45: 0 bytes OK -2023/08/07-23:27:51.019258 7f58677fe6c0 Delete type=0 #43 -2023/08/07-23:27:51.040432 7f58677fe6c0 Manual compaction at level-0 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) -2023/08/07-23:27:51.040586 7f58677fe6c0 Manual compaction at level-1 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) +2023/08/08-08:16:25.461187 7f5afd5f96c0 Recovering log #44 +2023/08/08-08:16:25.474679 7f5afd5f96c0 Delete type=3 #42 +2023/08/08-08:16:25.474715 7f5afd5f96c0 Delete type=0 #44 +2023/08/08-08:17:06.635707 7f58677fe6c0 Level-0 table #49: started +2023/08/08-08:17:06.635749 7f58677fe6c0 Level-0 table #49: 0 bytes OK +2023/08/08-08:17:06.642802 7f58677fe6c0 Delete type=0 #47 +2023/08/08-08:17:06.643044 7f58677fe6c0 Manual compaction at level-0 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) +2023/08/08-08:17:06.643110 7f58677fe6c0 Manual compaction at level-1 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) diff --git a/packs/complications/LOG.old b/packs/complications/LOG.old index 7bf8402..dcbf876 100644 --- a/packs/complications/LOG.old +++ b/packs/complications/LOG.old @@ -1,8 +1,8 @@ -2023/08/07-22:00:56.735452 7f5afd5f96c0 Recovering log #36 -2023/08/07-22:00:56.833916 7f5afd5f96c0 Delete type=3 #34 -2023/08/07-22:00:56.833991 7f5afd5f96c0 Delete type=0 #36 -2023/08/07-22:18:10.662583 7f58677fe6c0 Level-0 table #41: started -2023/08/07-22:18:10.662627 7f58677fe6c0 Level-0 table #41: 0 bytes OK -2023/08/07-22:18:10.668688 7f58677fe6c0 Delete type=0 #39 -2023/08/07-22:18:10.668861 7f58677fe6c0 Manual compaction at level-0 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) -2023/08/07-22:18:10.668891 7f58677fe6c0 Manual compaction at level-1 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) +2023/08/07-22:18:14.000526 7f5afddfa6c0 Recovering log #40 +2023/08/07-22:18:14.012956 7f5afddfa6c0 Delete type=3 #38 +2023/08/07-22:18:14.012989 7f5afddfa6c0 Delete type=0 #40 +2023/08/07-23:27:51.013130 7f58677fe6c0 Level-0 table #45: started +2023/08/07-23:27:51.013173 7f58677fe6c0 Level-0 table #45: 0 bytes OK +2023/08/07-23:27:51.019258 7f58677fe6c0 Delete type=0 #43 +2023/08/07-23:27:51.040432 7f58677fe6c0 Manual compaction at level-0 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) +2023/08/07-23:27:51.040586 7f58677fe6c0 Manual compaction at level-1 from '!items!05yAsPAteobyHoVT' @ 72057594037927935 : 1 .. '!items!yFhVFTqzLKcqApBr' @ 0 : 0; will stop at (end) diff --git a/packs/complications/MANIFEST-000042 b/packs/complications/MANIFEST-000042 deleted file mode 100644 index 875312887df205cde8e5eb74c9bbb27986f89bda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmeC4WpyNpfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfcQ^H(dQykcfaYHqQj zfoY{Ts0Oc0O2AdYXATM diff --git a/packs/perks/000044.log b/packs/perks/000044.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/perks/CURRENT b/packs/perks/CURRENT index 8e0a062..a6d5883 100644 --- a/packs/perks/CURRENT +++ b/packs/perks/CURRENT @@ -1 +1 @@ -MANIFEST-000042 +MANIFEST-000046 diff --git a/packs/perks/LOG b/packs/perks/LOG index 3b9ec1c..5b77949 100644 --- a/packs/perks/LOG +++ b/packs/perks/LOG @@ -1,8 +1,8 @@ -2023/08/07-22:18:14.015482 7f5afcdf86c0 Recovering log #40 -2023/08/07-22:18:14.031405 7f5afcdf86c0 Delete type=3 #38 -2023/08/07-22:18:14.031513 7f5afcdf86c0 Delete type=0 #40 -2023/08/07-23:27:51.019445 7f58677fe6c0 Level-0 table #45: started -2023/08/07-23:27:51.019492 7f58677fe6c0 Level-0 table #45: 0 bytes OK -2023/08/07-23:27:51.026550 7f58677fe6c0 Delete type=0 #43 -2023/08/07-23:27:51.040470 7f58677fe6c0 Manual compaction at level-0 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) -2023/08/07-23:27:51.040607 7f58677fe6c0 Manual compaction at level-1 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) +2023/08/08-08:16:25.476569 7f5afd5f96c0 Recovering log #44 +2023/08/08-08:16:25.493410 7f5afd5f96c0 Delete type=3 #42 +2023/08/08-08:16:25.493503 7f5afd5f96c0 Delete type=0 #44 +2023/08/08-08:17:06.643184 7f58677fe6c0 Level-0 table #49: started +2023/08/08-08:17:06.643236 7f58677fe6c0 Level-0 table #49: 0 bytes OK +2023/08/08-08:17:06.650531 7f58677fe6c0 Delete type=0 #47 +2023/08/08-08:17:06.658850 7f58677fe6c0 Manual compaction at level-0 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) +2023/08/08-08:17:06.658878 7f58677fe6c0 Manual compaction at level-1 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) diff --git a/packs/perks/LOG.old b/packs/perks/LOG.old index 7fbc80d..3b9ec1c 100644 --- a/packs/perks/LOG.old +++ b/packs/perks/LOG.old @@ -1,8 +1,8 @@ -2023/08/07-22:00:56.836453 7f5afd5f96c0 Recovering log #36 -2023/08/07-22:00:56.950488 7f5afd5f96c0 Delete type=3 #34 -2023/08/07-22:00:56.950642 7f5afd5f96c0 Delete type=0 #36 -2023/08/07-22:18:10.683235 7f58677fe6c0 Level-0 table #41: started -2023/08/07-22:18:10.683286 7f58677fe6c0 Level-0 table #41: 0 bytes OK -2023/08/07-22:18:10.690928 7f58677fe6c0 Delete type=0 #39 -2023/08/07-22:18:10.691057 7f58677fe6c0 Manual compaction at level-0 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) -2023/08/07-22:18:10.691082 7f58677fe6c0 Manual compaction at level-1 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) +2023/08/07-22:18:14.015482 7f5afcdf86c0 Recovering log #40 +2023/08/07-22:18:14.031405 7f5afcdf86c0 Delete type=3 #38 +2023/08/07-22:18:14.031513 7f5afcdf86c0 Delete type=0 #40 +2023/08/07-23:27:51.019445 7f58677fe6c0 Level-0 table #45: started +2023/08/07-23:27:51.019492 7f58677fe6c0 Level-0 table #45: 0 bytes OK +2023/08/07-23:27:51.026550 7f58677fe6c0 Delete type=0 #43 +2023/08/07-23:27:51.040470 7f58677fe6c0 Manual compaction at level-0 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) +2023/08/07-23:27:51.040607 7f58677fe6c0 Manual compaction at level-1 from '!items!L3vwlIh3oloE6A8W' @ 72057594037927935 : 1 .. '!items!yWTR7MCOtGWm1KCz' @ 0 : 0; will stop at (end) diff --git a/packs/perks/MANIFEST-000042 b/packs/perks/MANIFEST-000042 deleted file mode 100644 index 5ded7143a4c0a2e3a899116337c5858778f1a6f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmX>X(J7S3z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&PMD+M^(^m|2pVTde3~ zTvndrnPHrtlkaNgXc5lH$N&Z~`O5H+Aah@5{}T7`Ttjc?Dn=HFyjbYzXB-TSOxm0b U%sMPA%)1UNgSa|Ct{w{u0BzhMxc~qF diff --git a/packs/powers/000044.log b/packs/powers/000044.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/powers/CURRENT b/packs/powers/CURRENT index 8e0a062..a6d5883 100644 --- a/packs/powers/CURRENT +++ b/packs/powers/CURRENT @@ -1 +1 @@ -MANIFEST-000042 +MANIFEST-000046 diff --git a/packs/powers/LOG b/packs/powers/LOG index 6241a04..b83c860 100644 --- a/packs/powers/LOG +++ b/packs/powers/LOG @@ -1,8 +1,8 @@ -2023/08/07-22:18:13.982354 7f5afd5f96c0 Recovering log #40 -2023/08/07-22:18:13.997957 7f5afd5f96c0 Delete type=3 #38 -2023/08/07-22:18:13.998008 7f5afd5f96c0 Delete type=0 #40 -2023/08/07-23:27:51.005564 7f58677fe6c0 Level-0 table #45: started -2023/08/07-23:27:51.005735 7f58677fe6c0 Level-0 table #45: 0 bytes OK -2023/08/07-23:27:51.012861 7f58677fe6c0 Delete type=0 #43 -2023/08/07-23:27:51.013069 7f58677fe6c0 Manual compaction at level-0 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) -2023/08/07-23:27:51.013100 7f58677fe6c0 Manual compaction at level-1 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) +2023/08/08-08:16:25.447883 7f5afddfa6c0 Recovering log #44 +2023/08/08-08:16:25.457469 7f5afddfa6c0 Delete type=3 #42 +2023/08/08-08:16:25.457528 7f5afddfa6c0 Delete type=0 #44 +2023/08/08-08:17:06.621801 7f58677fe6c0 Level-0 table #49: started +2023/08/08-08:17:06.621842 7f58677fe6c0 Level-0 table #49: 0 bytes OK +2023/08/08-08:17:06.629025 7f58677fe6c0 Delete type=0 #47 +2023/08/08-08:17:06.642970 7f58677fe6c0 Manual compaction at level-0 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) +2023/08/08-08:17:06.643067 7f58677fe6c0 Manual compaction at level-1 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) diff --git a/packs/powers/LOG.old b/packs/powers/LOG.old index ff3cd59..6241a04 100644 --- a/packs/powers/LOG.old +++ b/packs/powers/LOG.old @@ -1,8 +1,8 @@ -2023/08/07-22:00:56.642444 7f5afcdf86c0 Recovering log #36 -2023/08/07-22:00:56.750892 7f5afcdf86c0 Delete type=3 #34 -2023/08/07-22:00:56.750934 7f5afcdf86c0 Delete type=0 #36 -2023/08/07-22:18:10.655429 7f58677fe6c0 Level-0 table #41: started -2023/08/07-22:18:10.655482 7f58677fe6c0 Level-0 table #41: 0 bytes OK -2023/08/07-22:18:10.662426 7f58677fe6c0 Delete type=0 #39 -2023/08/07-22:18:10.668849 7f58677fe6c0 Manual compaction at level-0 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) -2023/08/07-22:18:10.668882 7f58677fe6c0 Manual compaction at level-1 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) +2023/08/07-22:18:13.982354 7f5afd5f96c0 Recovering log #40 +2023/08/07-22:18:13.997957 7f5afd5f96c0 Delete type=3 #38 +2023/08/07-22:18:13.998008 7f5afd5f96c0 Delete type=0 #40 +2023/08/07-23:27:51.005564 7f58677fe6c0 Level-0 table #45: started +2023/08/07-23:27:51.005735 7f58677fe6c0 Level-0 table #45: 0 bytes OK +2023/08/07-23:27:51.012861 7f58677fe6c0 Delete type=0 #43 +2023/08/07-23:27:51.013069 7f58677fe6c0 Manual compaction at level-0 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) +2023/08/07-23:27:51.013100 7f58677fe6c0 Manual compaction at level-1 from '!items!3vinyVxuFdrQDCBo' @ 72057594037927935 : 1 .. '!items!zpF2QY4tx7qdBomQ' @ 0 : 0; will stop at (end) diff --git a/packs/powers/MANIFEST-000042 b/packs/powers/MANIFEST-000042 deleted file mode 100644 index 2687736287a02b85f976d3c5c3cf1ad13227fda9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmbQTUdt$nfss)vC$%g!CnZVGsj?)sJhM2}IX|}`u_&=5zlfcQ_v`pgoS$2eSd>_jU&PMDdiFD;ykcfaYHqQj zfti_cP*_q_P>w-%Uzwb@-i81Ao5C_7MvUmj7-{` V49q$#Hs;G5+(29%AXksY1^`9PAh-Yk diff --git a/packs/talents/000044.log b/packs/talents/000044.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/talents/CURRENT b/packs/talents/CURRENT index 8e0a062..a6d5883 100644 --- a/packs/talents/CURRENT +++ b/packs/talents/CURRENT @@ -1 +1 @@ -MANIFEST-000042 +MANIFEST-000046 diff --git a/packs/talents/LOG b/packs/talents/LOG index 95f6f5b..ecd067e 100644 --- a/packs/talents/LOG +++ b/packs/talents/LOG @@ -1,8 +1,8 @@ -2023/08/07-22:18:14.015482 7f5afd5f96c0 Recovering log #40 -2023/08/07-22:18:14.034395 7f5afd5f96c0 Delete type=3 #38 -2023/08/07-22:18:14.034433 7f5afd5f96c0 Delete type=0 #40 -2023/08/07-23:27:51.034000 7f58677fe6c0 Level-0 table #45: started -2023/08/07-23:27:51.034031 7f58677fe6c0 Level-0 table #45: 0 bytes OK -2023/08/07-23:27:51.040235 7f58677fe6c0 Delete type=0 #43 -2023/08/07-23:27:51.040547 7f58677fe6c0 Manual compaction at level-0 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) -2023/08/07-23:27:51.040656 7f58677fe6c0 Manual compaction at level-1 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) +2023/08/08-08:16:25.478881 7f5afddfa6c0 Recovering log #44 +2023/08/08-08:16:25.496212 7f5afddfa6c0 Delete type=3 #42 +2023/08/08-08:16:25.496252 7f5afddfa6c0 Delete type=0 #44 +2023/08/08-08:17:06.650728 7f58677fe6c0 Level-0 table #49: started +2023/08/08-08:17:06.650795 7f58677fe6c0 Level-0 table #49: 0 bytes OK +2023/08/08-08:17:06.658621 7f58677fe6c0 Delete type=0 #47 +2023/08/08-08:17:06.658890 7f58677fe6c0 Manual compaction at level-0 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) +2023/08/08-08:17:06.658907 7f58677fe6c0 Manual compaction at level-1 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) diff --git a/packs/talents/LOG.old b/packs/talents/LOG.old index c5ddf3b..95f6f5b 100644 --- a/packs/talents/LOG.old +++ b/packs/talents/LOG.old @@ -1,8 +1,8 @@ -2023/08/07-22:00:56.853665 7f5afcdf86c0 Recovering log #36 -2023/08/07-22:00:56.969522 7f5afcdf86c0 Delete type=3 #34 -2023/08/07-22:00:56.969559 7f5afcdf86c0 Delete type=0 #36 -2023/08/07-22:18:10.675457 7f58677fe6c0 Level-0 table #41: started -2023/08/07-22:18:10.675493 7f58677fe6c0 Level-0 table #41: 0 bytes OK -2023/08/07-22:18:10.683073 7f58677fe6c0 Delete type=0 #39 -2023/08/07-22:18:10.691049 7f58677fe6c0 Manual compaction at level-0 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) -2023/08/07-22:18:10.691077 7f58677fe6c0 Manual compaction at level-1 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) +2023/08/07-22:18:14.015482 7f5afd5f96c0 Recovering log #40 +2023/08/07-22:18:14.034395 7f5afd5f96c0 Delete type=3 #38 +2023/08/07-22:18:14.034433 7f5afd5f96c0 Delete type=0 #40 +2023/08/07-23:27:51.034000 7f58677fe6c0 Level-0 table #45: started +2023/08/07-23:27:51.034031 7f58677fe6c0 Level-0 table #45: 0 bytes OK +2023/08/07-23:27:51.040235 7f58677fe6c0 Delete type=0 #43 +2023/08/07-23:27:51.040547 7f58677fe6c0 Manual compaction at level-0 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) +2023/08/07-23:27:51.040656 7f58677fe6c0 Manual compaction at level-1 from '!items!1oojD2KMJsxNlMez' @ 72057594037927935 : 1 .. '!items!znoFgVzNQOCTGUBl' @ 0 : 0; will stop at (end) diff --git a/packs/talents/MANIFEST-000042 b/packs/talents/MANIFEST-000042 deleted file mode 100644 index d7a742316e92545a0976ad79670364c9f00ce758..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 134 zcmY$qR;ZK6z{n_-lUkOVlai$8R9TW*o>`pgoS$2eSd>_jU&PMDdeKB)F|#B!w^-3I zKR?UG$lKSexWX^TH?@k9kpT=~@>O~HZs}oFeu4hZA?~40IgES|`AaKyZ{uKKWYXqj UVAf&bJI=hh7{t{9a`jmF0KSwX&j0`b diff --git a/packs/weapons/000044.log b/packs/weapons/000044.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/weapons/CURRENT b/packs/weapons/CURRENT index 8e0a062..a6d5883 100644 --- a/packs/weapons/CURRENT +++ b/packs/weapons/CURRENT @@ -1 +1 @@ -MANIFEST-000042 +MANIFEST-000046 diff --git a/packs/weapons/LOG b/packs/weapons/LOG index f0a6267..aaed7db 100644 --- a/packs/weapons/LOG +++ b/packs/weapons/LOG @@ -1,7 +1,7 @@ -2023/08/07-22:18:13.969369 7f5afddfa6c0 Recovering log #40 -2023/08/07-22:18:13.978774 7f5afddfa6c0 Delete type=3 #38 -2023/08/07-22:18:13.978889 7f5afddfa6c0 Delete type=0 #40 -2023/08/07-23:27:50.992870 7f58677fe6c0 Level-0 table #45: started -2023/08/07-23:27:50.992899 7f58677fe6c0 Level-0 table #45: 0 bytes OK -2023/08/07-23:27:50.999291 7f58677fe6c0 Delete type=0 #43 -2023/08/07-23:27:51.013019 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2023/08/08-08:16:25.435335 7f5afddfa6c0 Recovering log #44 +2023/08/08-08:16:25.445302 7f5afddfa6c0 Delete type=3 #42 +2023/08/08-08:16:25.445339 7f5afddfa6c0 Delete type=0 #44 +2023/08/08-08:17:06.608167 7f58677fe6c0 Level-0 table #49: started +2023/08/08-08:17:06.608235 7f58677fe6c0 Level-0 table #49: 0 bytes OK +2023/08/08-08:17:06.615092 7f58677fe6c0 Delete type=0 #47 +2023/08/08-08:17:06.621758 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/weapons/LOG.old b/packs/weapons/LOG.old index d6f3841..f0a6267 100644 --- a/packs/weapons/LOG.old +++ b/packs/weapons/LOG.old @@ -1,7 +1,7 @@ -2023/08/07-22:00:56.587421 7f5afcdf86c0 Recovering log #36 -2023/08/07-22:00:56.639569 7f5afcdf86c0 Delete type=3 #34 -2023/08/07-22:00:56.639646 7f5afcdf86c0 Delete type=0 #36 -2023/08/07-22:18:10.642928 7f58677fe6c0 Level-0 table #41: started -2023/08/07-22:18:10.642973 7f58677fe6c0 Level-0 table #41: 0 bytes OK -2023/08/07-22:18:10.649077 7f58677fe6c0 Delete type=0 #39 -2023/08/07-22:18:10.668818 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) +2023/08/07-22:18:13.969369 7f5afddfa6c0 Recovering log #40 +2023/08/07-22:18:13.978774 7f5afddfa6c0 Delete type=3 #38 +2023/08/07-22:18:13.978889 7f5afddfa6c0 Delete type=0 #40 +2023/08/07-23:27:50.992870 7f58677fe6c0 Level-0 table #45: started +2023/08/07-23:27:50.992899 7f58677fe6c0 Level-0 table #45: 0 bytes OK +2023/08/07-23:27:50.999291 7f58677fe6c0 Delete type=0 #43 +2023/08/07-23:27:51.013019 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end) diff --git a/packs/weapons/MANIFEST-000042 b/packs/weapons/MANIFEST-000042 deleted file mode 100644 index b5dbe9be633c5d80bf76da57505958ccac21c33c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 65 zcmWIhx#Ncn10$nUPHI_dPD+xVQ)NkNd1i5{bAE0?Vo_pAe$nIezj!zp7@4#=8JKlg R7`|yS1%bFaK&~DO0|5P561xBZ diff --git a/system.json b/system.json index 690d117..65b87ce 100644 --- a/system.json +++ b/system.json @@ -100,14 +100,14 @@ "styles": [ "styles/simple.css" ], - "version": "11.0.2", + "version": "11.0.3", "compatibility": { "minimum": "11", "verified": "11" }, "title": "Hero System v6 for FoundrtVTT (Official)", "manifest": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/raw/branch/main/system.json", - "download": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/archive/fvtt-hero-system-6-v11.0.1.zip", + "download": "https://www.uberwald.me/gitea/uberwald/fvtt-hero-system-6/archive/fvtt-hero-system-6-v11.0.3.zip", "url": "https://www.uberwald.me/gitea/uberwald/", "background": "systems/fvtt-hero-system-6/images/ui/hero_foundry_cover.webp", "id": "fvtt-hero-system-6"