Various fixes and enhancents
This commit is contained in:
parent
58bcfc07a3
commit
356f0fee5f
@ -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
|
||||
|
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/08/07-22:18:13.969369 7f5afd5f96c0 Recovering log #40
|
||||
2023/08/07-22:18:13.978774 7f5afd5f96c0 Delete type=3 #38
|
||||
2023/08/07-22:18:13.978872 7f5afd5f96c0 Delete type=0 #40
|
||||
2023/08/07-23:27:50.976450 7f58677fe6c0 Level-0 table #45: started
|
||||
2023/08/07-23:27:50.976502 7f58677fe6c0 Level-0 table #45: 0 bytes OK
|
||||
2023/08/07-23:27:50.982719 7f58677fe6c0 Delete type=0 #43
|
||||
2023/08/07-23:27:50.982828 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/08/08-08:16:25.435366 7f5afcdf86c0 Recovering log #44
|
||||
2023/08/08-08:16:25.445289 7f5afcdf86c0 Delete type=3 #42
|
||||
2023/08/08-08:16:25.445363 7f5afcdf86c0 Delete type=0 #44
|
||||
2023/08/08-08:17:06.600288 7f58677fe6c0 Level-0 table #49: started
|
||||
2023/08/08-08:17:06.600344 7f58677fe6c0 Level-0 table #49: 0 bytes OK
|
||||
2023/08/08-08:17:06.607987 7f58677fe6c0 Delete type=0 #47
|
||||
2023/08/08-08:17:06.615309 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/08/07-22:00:56.587410 7f5afd5f96c0 Recovering log #36
|
||||
2023/08/07-22:00:56.639569 7f5afd5f96c0 Delete type=3 #34
|
||||
2023/08/07-22:00:56.639645 7f5afd5f96c0 Delete type=0 #36
|
||||
2023/08/07-22:18:10.624177 7f58677fe6c0 Level-0 table #41: started
|
||||
2023/08/07-22:18:10.624214 7f58677fe6c0 Level-0 table #41: 0 bytes OK
|
||||
2023/08/07-22:18:10.632567 7f58677fe6c0 Delete type=0 #39
|
||||
2023/08/07-22:18:10.642835 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-22:18:13.969369 7f5afd5f96c0 Recovering log #40
|
||||
2023/08/07-22:18:13.978774 7f5afd5f96c0 Delete type=3 #38
|
||||
2023/08/07-22:18:13.978872 7f5afd5f96c0 Delete type=0 #40
|
||||
2023/08/07-23:27:50.976450 7f58677fe6c0 Level-0 table #45: started
|
||||
2023/08/07-23:27:50.976502 7f58677fe6c0 Level-0 table #45: 0 bytes OK
|
||||
2023/08/07-23:27:50.982719 7f58677fe6c0 Delete type=0 #43
|
||||
2023/08/07-23:27:50.982828 7f58677fe6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000034
|
||||
MANIFEST-000038
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/08/07-22:18:14.000527 7f5afd5f96c0 Recovering log #32
|
||||
2023/08/07-22:18:14.012956 7f5afd5f96c0 Delete type=3 #30
|
||||
2023/08/07-22:18:14.012992 7f5afd5f96c0 Delete type=0 #32
|
||||
2023/08/07-23:27:51.026690 7f58677fe6c0 Level-0 table #37: started
|
||||
2023/08/07-23:27:51.026730 7f58677fe6c0 Level-0 table #37: 0 bytes OK
|
||||
2023/08/07-23:27:51.033892 7f58677fe6c0 Delete type=0 #35
|
||||
2023/08/07-23:27:51.040520 7f58677fe6c0 Manual compaction at level-0 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-23:27:51.040625 7f58677fe6c0 Manual compaction at level-1 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/08-08:16:25.461251 7f5afddfa6c0 Recovering log #36
|
||||
2023/08/08-08:16:25.477680 7f5afddfa6c0 Delete type=3 #34
|
||||
2023/08/08-08:16:25.477718 7f5afddfa6c0 Delete type=0 #36
|
||||
2023/08/08-08:17:06.629201 7f58677fe6c0 Level-0 table #41: started
|
||||
2023/08/08-08:17:06.629246 7f58677fe6c0 Level-0 table #41: 0 bytes OK
|
||||
2023/08/08-08:17:06.635576 7f58677fe6c0 Delete type=0 #39
|
||||
2023/08/08-08:17:06.643022 7f58677fe6c0 Manual compaction at level-0 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/08-08:17:06.643086 7f58677fe6c0 Manual compaction at level-1 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/08/07-22:00:56.752593 7f5afcdf86c0 Recovering log #28
|
||||
2023/08/07-22:00:56.851595 7f5afcdf86c0 Delete type=3 #26
|
||||
2023/08/07-22:00:56.851652 7f5afcdf86c0 Delete type=0 #28
|
||||
2023/08/07-22:18:10.668942 7f58677fe6c0 Level-0 table #33: started
|
||||
2023/08/07-22:18:10.668989 7f58677fe6c0 Level-0 table #33: 0 bytes OK
|
||||
2023/08/07-22:18:10.675320 7f58677fe6c0 Delete type=0 #31
|
||||
2023/08/07-22:18:10.691036 7f58677fe6c0 Manual compaction at level-0 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-22:18:10.691069 7f58677fe6c0 Manual compaction at level-1 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-22:18:14.000527 7f5afd5f96c0 Recovering log #32
|
||||
2023/08/07-22:18:14.012956 7f5afd5f96c0 Delete type=3 #30
|
||||
2023/08/07-22:18:14.012992 7f5afd5f96c0 Delete type=0 #32
|
||||
2023/08/07-23:27:51.026690 7f58677fe6c0 Level-0 table #37: started
|
||||
2023/08/07-23:27:51.026730 7f58677fe6c0 Level-0 table #37: 0 bytes OK
|
||||
2023/08/07-23:27:51.033892 7f58677fe6c0 Delete type=0 #35
|
||||
2023/08/07-23:27:51.040520 7f58677fe6c0 Manual compaction at level-0 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-23:27:51.040625 7f58677fe6c0 Manual compaction at level-1 from '!items!0HeZcvevni63brWf' @ 72057594037927935 : 1 .. '!items!yAT32VYV2aIWOBkK' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/08/07-22:18:13.982353 7f5afddfa6c0 Recovering log #40
|
||||
2023/08/07-22:18:13.997971 7f5afddfa6c0 Delete type=3 #38
|
||||
2023/08/07-22:18:13.998032 7f5afddfa6c0 Delete type=0 #40
|
||||
2023/08/07-23:27:50.999438 7f58677fe6c0 Level-0 table #45: started
|
||||
2023/08/07-23:27:50.999471 7f58677fe6c0 Level-0 table #45: 0 bytes OK
|
||||
2023/08/07-23:27:51.005436 7f58677fe6c0 Delete type=0 #43
|
||||
2023/08/07-23:27:51.013039 7f58677fe6c0 Manual compaction at level-0 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-23:27:51.013085 7f58677fe6c0 Manual compaction at level-1 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/08-08:16:25.447873 7f5afcdf86c0 Recovering log #44
|
||||
2023/08/08-08:16:25.457419 7f5afcdf86c0 Delete type=3 #42
|
||||
2023/08/08-08:16:25.457478 7f5afcdf86c0 Delete type=0 #44
|
||||
2023/08/08-08:17:06.615328 7f58677fe6c0 Level-0 table #49: started
|
||||
2023/08/08-08:17:06.615361 7f58677fe6c0 Level-0 table #49: 0 bytes OK
|
||||
2023/08/08-08:17:06.621611 7f58677fe6c0 Delete type=0 #47
|
||||
2023/08/08-08:17:06.629182 7f58677fe6c0 Manual compaction at level-0 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/08-08:17:06.643000 7f58677fe6c0 Manual compaction at level-1 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/08/07-22:00:56.642359 7f5afd5f96c0 Recovering log #36
|
||||
2023/08/07-22:00:56.733205 7f5afd5f96c0 Delete type=3 #34
|
||||
2023/08/07-22:00:56.733486 7f5afd5f96c0 Delete type=0 #36
|
||||
2023/08/07-22:18:10.649211 7f58677fe6c0 Level-0 table #41: started
|
||||
2023/08/07-22:18:10.649245 7f58677fe6c0 Level-0 table #41: 0 bytes OK
|
||||
2023/08/07-22:18:10.655255 7f58677fe6c0 Delete type=0 #39
|
||||
2023/08/07-22:18:10.668835 7f58677fe6c0 Manual compaction at level-0 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-22:18:10.668872 7f58677fe6c0 Manual compaction at level-1 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-22:18:13.982353 7f5afddfa6c0 Recovering log #40
|
||||
2023/08/07-22:18:13.997971 7f5afddfa6c0 Delete type=3 #38
|
||||
2023/08/07-22:18:13.998032 7f5afddfa6c0 Delete type=0 #40
|
||||
2023/08/07-23:27:50.999438 7f58677fe6c0 Level-0 table #45: started
|
||||
2023/08/07-23:27:50.999471 7f58677fe6c0 Level-0 table #45: 0 bytes OK
|
||||
2023/08/07-23:27:51.005436 7f58677fe6c0 Delete type=0 #43
|
||||
2023/08/07-23:27:51.013039 7f58677fe6c0 Manual compaction at level-0 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
2023/08/07-23:27:51.013085 7f58677fe6c0 Manual compaction at level-1 from '!items!0663RVbZRl0oZ0Dr' @ 72057594037927935 : 1 .. '!items!zLKcnLGEcMwECjni' @ 0 : 0; will stop at (end)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000042
|
||||
MANIFEST-000046
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user