Fix initiative again
This commit is contained in:
@@ -143,10 +143,27 @@ export class LethalFantasyCombat extends Combat {
|
|||||||
/** Roll progression dice for all eligible monster combatants this round. Called manually by the GM. */
|
/** Roll progression dice for all eligible monster combatants this round. Called manually by the GM. */
|
||||||
async rollMonsterProgression() {
|
async rollMonsterProgression() {
|
||||||
const currentRound = this.round;
|
const currentRound = this.round;
|
||||||
for (let c of this.combatants) {
|
const monsters = this.combatants.filter(c => c.actor?.type === "monster" && !c.isDefeated);
|
||||||
if (c.actor.type !== "monster") continue;
|
|
||||||
|
if (monsters.length === 0) {
|
||||||
|
ui.notifications.warn("No monsters in combat.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let rolled = 0;
|
||||||
|
for (let c of monsters) {
|
||||||
if (c.initiative !== null && currentRound >= c.initiative) {
|
if (c.initiative !== null && currentRound >= c.initiative) {
|
||||||
await c.actor.system.rollProgressionDice(this.id, c.id);
|
await c.actor.system.rollProgressionDice(this.id, c.id);
|
||||||
|
rolled++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rolled === 0) {
|
||||||
|
const earliest = monsters.reduce((min, c) => (c.initiative !== null && c.initiative < min) ? c.initiative : min, Infinity);
|
||||||
|
if (earliest === Infinity) {
|
||||||
|
ui.notifications.warn("Monsters have no initiative set. Roll initiative first.");
|
||||||
|
} else {
|
||||||
|
ui.notifications.info(`No monsters act yet — earliest monster initiative is ${earliest} (current round: ${currentRound}).`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -259,9 +259,11 @@ export default class LethalFantasyCharacterSheet extends LethalFantasyActorSheet
|
|||||||
|
|
||||||
async _onRoll(event, target) {
|
async _onRoll(event, target) {
|
||||||
if (this.isEditMode) return
|
if (this.isEditMode) return
|
||||||
const rollType = event.target.dataset.rollType
|
const el = event.currentTarget
|
||||||
let rollKey = event.target.dataset.rollKey;
|
const rollType = el.dataset.rollType
|
||||||
let rollDice = event.target.dataset?.rollDice;
|
if (!rollType) return
|
||||||
|
let rollKey = el.dataset.rollKey
|
||||||
|
let rollDice = el.dataset.rollDice
|
||||||
|
|
||||||
this.actor.prepareRoll(rollType, rollKey, rollDice)
|
this.actor.prepareRoll(rollType, rollKey, rollDice)
|
||||||
|
|
||||||
|
|||||||
@@ -115,7 +115,9 @@ export default class LethalFantasyMonsterSheet extends LethalFantasyActorSheet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static async #onRollInitiative(event, target) {
|
static async #onRollInitiative(event, target) {
|
||||||
await this.document.system.rollInitiative(event, target)
|
const combat = game.combat
|
||||||
|
const combatant = combat?.combatants.find(c => c.actorId === this.document.id)
|
||||||
|
await this.document.system.rollInitiative(combat?.id, combatant?.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
getBestWeaponClassSkill(skills, rollType, multiplier = 1.0) {
|
getBestWeaponClassSkill(skills, rollType, multiplier = 1.0) {
|
||||||
|
|||||||
@@ -279,7 +279,7 @@ export default class LethalFantasyActor extends Actor {
|
|||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
ui.notifications.error(game.i18n.localize("LETHALFANTASY.Notifications.rollTypeNotFound") + String(rollType))
|
ui.notifications.error(game.i18n.localize("LETHALFANTASY.Notifications.rollTypeNotFound") + String(rollType))
|
||||||
break
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// In all cases
|
// In all cases
|
||||||
|
|||||||
@@ -321,7 +321,7 @@ export default class LethalFantasyRoll extends Roll {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const rollModes = foundry.utils.duplicate(CONFIG.ChatMessage.modes);
|
const rollModes = foundry.utils.duplicate(CONFIG.ChatMessage.modes);
|
||||||
console.log("Roll mode", rollModes)
|
|
||||||
|
|
||||||
const fieldRollMode = new foundry.data.fields.StringField({
|
const fieldRollMode = new foundry.data.fields.StringField({
|
||||||
choices: rollModes,
|
choices: rollModes,
|
||||||
|
|||||||
@@ -356,6 +356,11 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (weaponsChoices.length === 0) {
|
||||||
|
ui.notifications.warn(`${this.parent.name} has no weapons or spells available for combat. Add a weapon to the character sheet first.`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
let roll = await LethalFantasyRoll.promptCombatAction({
|
let roll = await LethalFantasyRoll.promptCombatAction({
|
||||||
actorId: this.parent.id,
|
actorId: this.parent.id,
|
||||||
actorName: this.parent.name,
|
actorName: this.parent.name,
|
||||||
|
|||||||
@@ -284,7 +284,6 @@ export default class LethalFantasyMonster extends foundry.abstract.TypeDataModel
|
|||||||
// In all cases
|
// In all cases
|
||||||
if (rollTarget) {
|
if (rollTarget) {
|
||||||
rollTarget.tokenId = tokenId
|
rollTarget.tokenId = tokenId
|
||||||
console.log(rollTarget)
|
|
||||||
await this.roll(rollType, rollTarget, defenderId, defenderTokenId, extraShieldDr)
|
await this.roll(rollType, rollTarget, defenderId, defenderTokenId, extraShieldDr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1195,7 +1195,7 @@ export default class LethalFantasyUtils {
|
|||||||
ChatMessage.create({
|
ChatMessage.create({
|
||||||
user: game.user.id,
|
user: game.user.id,
|
||||||
speaker: { alias: targetActor.name },
|
speaker: { alias: targetActor.name },
|
||||||
rollMode: "gmroll",
|
mode: "gmroll",
|
||||||
content: messageContent
|
content: messageContent
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
MANIFEST-000591
|
MANIFEST-000595
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/17-11:57:50.231387 7f16423fc6c0 Recovering log #589
|
2026/05/18-07:32:52.671725 7f5a94bff6c0 Recovering log #593
|
||||||
2026/05/17-11:57:50.249229 7f16423fc6c0 Delete type=3 #587
|
2026/05/18-07:32:52.684619 7f5a94bff6c0 Delete type=3 #591
|
||||||
2026/05/17-11:57:50.249281 7f16423fc6c0 Delete type=0 #589
|
2026/05/18-07:32:52.684760 7f5a94bff6c0 Delete type=0 #593
|
||||||
2026/05/17-13:21:53.429711 7f1641bfb6c0 Level-0 table #594: started
|
2026/05/18-07:58:12.225439 7f5a467fc6c0 Level-0 table #598: started
|
||||||
2026/05/17-13:21:53.429759 7f1641bfb6c0 Level-0 table #594: 0 bytes OK
|
2026/05/18-07:58:12.225593 7f5a467fc6c0 Level-0 table #598: 0 bytes OK
|
||||||
2026/05/17-13:21:53.437714 7f1641bfb6c0 Delete type=0 #592
|
2026/05/18-07:58:12.232817 7f5a467fc6c0 Delete type=0 #596
|
||||||
2026/05/17-13:21:53.449134 7f1641bfb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252837 7f5a467fc6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
2026/05/17-13:21:53.461721 7f1641bfb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252955 7f5a467fc6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/02-08:40:55.892385 7fd7557ee6c0 Recovering log #585
|
2026/05/17-11:57:50.231387 7f16423fc6c0 Recovering log #589
|
||||||
2026/05/02-08:40:55.903385 7fd7557ee6c0 Delete type=3 #583
|
2026/05/17-11:57:50.249229 7f16423fc6c0 Delete type=3 #587
|
||||||
2026/05/02-08:40:55.903442 7fd7557ee6c0 Delete type=0 #585
|
2026/05/17-11:57:50.249281 7f16423fc6c0 Delete type=0 #589
|
||||||
2026/05/02-08:41:12.057856 7fd7477fe6c0 Level-0 table #590: started
|
2026/05/17-13:21:53.429711 7f1641bfb6c0 Level-0 table #594: started
|
||||||
2026/05/02-08:41:12.057882 7fd7477fe6c0 Level-0 table #590: 0 bytes OK
|
2026/05/17-13:21:53.429759 7f1641bfb6c0 Level-0 table #594: 0 bytes OK
|
||||||
2026/05/02-08:41:12.121845 7fd7477fe6c0 Delete type=0 #588
|
2026/05/17-13:21:53.437714 7f1641bfb6c0 Delete type=0 #592
|
||||||
2026/05/02-08:41:12.122077 7fd7477fe6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.449134 7f1641bfb6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
2026/05/02-08:41:12.122121 7fd7477fe6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.461721 7f1641bfb6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000588
|
MANIFEST-000592
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/17-11:57:50.260046 7f16433fe6c0 Recovering log #586
|
2026/05/18-07:32:52.700651 7f5a477fe6c0 Recovering log #590
|
||||||
2026/05/17-11:57:50.276348 7f16433fe6c0 Delete type=3 #584
|
2026/05/18-07:32:52.712680 7f5a477fe6c0 Delete type=3 #588
|
||||||
2026/05/17-11:57:50.276460 7f16433fe6c0 Delete type=0 #586
|
2026/05/18-07:32:52.712814 7f5a477fe6c0 Delete type=0 #590
|
||||||
2026/05/17-13:21:53.474443 7f1641bfb6c0 Level-0 table #591: started
|
2026/05/18-07:58:12.232998 7f5a467fc6c0 Level-0 table #595: started
|
||||||
2026/05/17-13:21:53.474485 7f1641bfb6c0 Level-0 table #591: 0 bytes OK
|
2026/05/18-07:58:12.233130 7f5a467fc6c0 Level-0 table #595: 0 bytes OK
|
||||||
2026/05/17-13:21:53.481502 7f1641bfb6c0 Delete type=0 #589
|
2026/05/18-07:58:12.244133 7f5a467fc6c0 Delete type=0 #593
|
||||||
2026/05/17-13:21:53.490389 7f1641bfb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252873 7f5a467fc6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
||||||
2026/05/17-13:21:53.512946 7f1641bfb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252977 7f5a467fc6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/02-08:40:55.909564 7fd747fff6c0 Recovering log #582
|
2026/05/17-11:57:50.260046 7f16433fe6c0 Recovering log #586
|
||||||
2026/05/02-08:40:55.919159 7fd747fff6c0 Delete type=3 #580
|
2026/05/17-11:57:50.276348 7f16433fe6c0 Delete type=3 #584
|
||||||
2026/05/02-08:40:55.919214 7fd747fff6c0 Delete type=0 #582
|
2026/05/17-11:57:50.276460 7f16433fe6c0 Delete type=0 #586
|
||||||
2026/05/02-08:41:11.999050 7fd7477fe6c0 Level-0 table #587: started
|
2026/05/17-13:21:53.474443 7f1641bfb6c0 Level-0 table #591: started
|
||||||
2026/05/02-08:41:11.999076 7fd7477fe6c0 Level-0 table #587: 0 bytes OK
|
2026/05/17-13:21:53.474485 7f1641bfb6c0 Level-0 table #591: 0 bytes OK
|
||||||
2026/05/02-08:41:12.057672 7fd7477fe6c0 Delete type=0 #585
|
2026/05/17-13:21:53.481502 7f1641bfb6c0 Delete type=0 #589
|
||||||
2026/05/02-08:41:12.122063 7fd7477fe6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.490389 7f1641bfb6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
||||||
2026/05/02-08:41:12.122111 7fd7477fe6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.512946 7f1641bfb6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!x5gLtqlW4sdDmHTd' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000593
|
MANIFEST-000597
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/17-11:57:50.206131 7f1643bff6c0 Recovering log #591
|
2026/05/18-07:32:52.650924 7f5a47fff6c0 Recovering log #595
|
||||||
2026/05/17-11:57:50.222037 7f1643bff6c0 Delete type=3 #589
|
2026/05/18-07:32:52.662191 7f5a47fff6c0 Delete type=3 #593
|
||||||
2026/05/17-11:57:50.222089 7f1643bff6c0 Delete type=0 #591
|
2026/05/18-07:32:52.662331 7f5a47fff6c0 Delete type=0 #595
|
||||||
2026/05/17-13:21:53.292176 7f1641bfb6c0 Level-0 table #596: started
|
2026/05/18-07:58:12.218060 7f5a467fc6c0 Level-0 table #600: started
|
||||||
2026/05/17-13:21:53.292219 7f1641bfb6c0 Level-0 table #596: 0 bytes OK
|
2026/05/18-07:58:12.218402 7f5a467fc6c0 Level-0 table #600: 0 bytes OK
|
||||||
2026/05/17-13:21:53.299322 7f1641bfb6c0 Delete type=0 #594
|
2026/05/18-07:58:12.225237 7f5a467fc6c0 Delete type=0 #598
|
||||||
2026/05/17-13:21:53.306548 7f1641bfb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.244392 7f5a467fc6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
2026/05/17-13:21:53.318889 7f1641bfb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252899 7f5a467fc6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/02-08:40:55.873571 7fd747fff6c0 Recovering log #587
|
2026/05/17-11:57:50.206131 7f1643bff6c0 Recovering log #591
|
||||||
2026/05/02-08:40:55.883892 7fd747fff6c0 Delete type=3 #585
|
2026/05/17-11:57:50.222037 7f1643bff6c0 Delete type=3 #589
|
||||||
2026/05/02-08:40:55.883950 7fd747fff6c0 Delete type=0 #587
|
2026/05/17-11:57:50.222089 7f1643bff6c0 Delete type=0 #591
|
||||||
2026/05/02-08:41:11.870087 7fd7477fe6c0 Level-0 table #592: started
|
2026/05/17-13:21:53.292176 7f1641bfb6c0 Level-0 table #596: started
|
||||||
2026/05/02-08:41:11.870140 7fd7477fe6c0 Level-0 table #592: 0 bytes OK
|
2026/05/17-13:21:53.292219 7f1641bfb6c0 Level-0 table #596: 0 bytes OK
|
||||||
2026/05/02-08:41:11.937524 7fd7477fe6c0 Delete type=0 #590
|
2026/05/17-13:21:53.299322 7f1641bfb6c0 Delete type=0 #594
|
||||||
2026/05/02-08:41:12.122025 7fd7477fe6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.306548 7f1641bfb6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
2026/05/02-08:41:12.122087 7fd7477fe6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.318889 7f1641bfb6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000288
|
MANIFEST-000292
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/17-11:57:50.303535 7f16433fe6c0 Recovering log #286
|
2026/05/18-07:32:52.738234 7f5a477fe6c0 Recovering log #290
|
||||||
2026/05/17-11:57:50.318955 7f16433fe6c0 Delete type=3 #284
|
2026/05/18-07:32:52.749839 7f5a477fe6c0 Delete type=3 #288
|
||||||
2026/05/17-11:57:50.319061 7f16433fe6c0 Delete type=0 #286
|
2026/05/18-07:32:52.749970 7f5a477fe6c0 Delete type=0 #290
|
||||||
2026/05/17-13:21:53.481662 7f1641bfb6c0 Level-0 table #291: started
|
2026/05/18-07:58:12.253340 7f5a467fc6c0 Level-0 table #295: started
|
||||||
2026/05/17-13:21:53.481693 7f1641bfb6c0 Level-0 table #291: 0 bytes OK
|
2026/05/18-07:58:12.253449 7f5a467fc6c0 Level-0 table #295: 0 bytes OK
|
||||||
2026/05/17-13:21:53.490187 7f1641bfb6c0 Delete type=0 #289
|
2026/05/18-07:58:12.261029 7f5a467fc6c0 Delete type=0 #293
|
||||||
2026/05/17-13:21:53.502325 7f1641bfb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.286385 7f5a467fc6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
2026/05/17-13:21:53.512979 7f1641bfb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.286487 7f5a467fc6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/02-08:40:55.939668 7fd754fed6c0 Recovering log #282
|
2026/05/17-11:57:50.303535 7f16433fe6c0 Recovering log #286
|
||||||
2026/05/02-08:40:55.949715 7fd754fed6c0 Delete type=3 #280
|
2026/05/17-11:57:50.318955 7f16433fe6c0 Delete type=3 #284
|
||||||
2026/05/02-08:40:55.949784 7fd754fed6c0 Delete type=0 #282
|
2026/05/17-11:57:50.319061 7f16433fe6c0 Delete type=0 #286
|
||||||
2026/05/02-08:41:12.184448 7fd7477fe6c0 Level-0 table #287: started
|
2026/05/17-13:21:53.481662 7f1641bfb6c0 Level-0 table #291: started
|
||||||
2026/05/02-08:41:12.184496 7fd7477fe6c0 Level-0 table #287: 0 bytes OK
|
2026/05/17-13:21:53.481693 7f1641bfb6c0 Level-0 table #291: 0 bytes OK
|
||||||
2026/05/02-08:41:12.252892 7fd7477fe6c0 Delete type=0 #285
|
2026/05/17-13:21:53.490187 7f1641bfb6c0 Delete type=0 #289
|
||||||
2026/05/02-08:41:12.365481 7fd7477fe6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.502325 7f1641bfb6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
2026/05/02-08:41:12.365509 7fd7477fe6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.512979 7f1641bfb6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
BIN
Binary file not shown.
@@ -1 +1 @@
|
|||||||
MANIFEST-000587
|
MANIFEST-000591
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/17-11:57:50.282340 7f16423fc6c0 Recovering log #585
|
2026/05/18-07:32:52.720162 7f5a94bff6c0 Recovering log #589
|
||||||
2026/05/17-11:57:50.297125 7f16423fc6c0 Delete type=3 #583
|
2026/05/18-07:32:52.731519 7f5a94bff6c0 Delete type=3 #587
|
||||||
2026/05/17-11:57:50.297189 7f16423fc6c0 Delete type=0 #585
|
2026/05/18-07:32:52.731690 7f5a94bff6c0 Delete type=0 #589
|
||||||
2026/05/17-13:21:53.299508 7f1641bfb6c0 Level-0 table #590: started
|
2026/05/18-07:58:12.244424 7f5a467fc6c0 Level-0 table #594: started
|
||||||
2026/05/17-13:21:53.299854 7f1641bfb6c0 Level-0 table #590: 0 bytes OK
|
2026/05/18-07:58:12.244618 7f5a467fc6c0 Level-0 table #594: 0 bytes OK
|
||||||
2026/05/17-13:21:53.306309 7f1641bfb6c0 Delete type=0 #588
|
2026/05/18-07:58:12.252579 7f5a467fc6c0 Delete type=0 #592
|
||||||
2026/05/17-13:21:53.318877 7f1641bfb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252922 7f5a467fc6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
2026/05/17-13:21:53.325564 7f1641bfb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2026/05/18-07:58:12.252996 7f5a467fc6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
2026/05/02-08:40:55.925402 7fd755fef6c0 Recovering log #581
|
2026/05/17-11:57:50.282340 7f16423fc6c0 Recovering log #585
|
||||||
2026/05/02-08:40:55.935869 7fd755fef6c0 Delete type=3 #579
|
2026/05/17-11:57:50.297125 7f16423fc6c0 Delete type=3 #583
|
||||||
2026/05/02-08:40:55.935924 7fd755fef6c0 Delete type=0 #581
|
2026/05/17-11:57:50.297189 7f16423fc6c0 Delete type=0 #585
|
||||||
2026/05/02-08:41:11.937698 7fd7477fe6c0 Level-0 table #586: started
|
2026/05/17-13:21:53.299508 7f1641bfb6c0 Level-0 table #590: started
|
||||||
2026/05/02-08:41:11.937727 7fd7477fe6c0 Level-0 table #586: 0 bytes OK
|
2026/05/17-13:21:53.299854 7f1641bfb6c0 Level-0 table #590: 0 bytes OK
|
||||||
2026/05/02-08:41:11.998871 7fd7477fe6c0 Delete type=0 #584
|
2026/05/17-13:21:53.306309 7f1641bfb6c0 Delete type=0 #588
|
||||||
2026/05/02-08:41:12.122041 7fd7477fe6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.318877 7f1641bfb6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
2026/05/02-08:41:12.122099 7fd7477fe6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2026/05/17-13:21:53.325564 7f1641bfb6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
|
|||||||
BIN
Binary file not shown.
Reference in New Issue
Block a user