Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b97f8688e4 | |||
| 9836bd50e6 | |||
| 6b909b192b |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
.history/
|
||||
node_modules
|
||||
.github/
|
||||
|
||||
@@ -43,6 +43,7 @@
|
||||
"MNBL.disarm": "Disarm",
|
||||
"MNBL.doubleD20": "Double d20 (1 Shard Point)",
|
||||
"MNBL.dramaticfailure": "Dramatic Failure",
|
||||
"MNBL.oddresult": "Odd result — the die counts as 0",
|
||||
"MNBL.duration": "Duration",
|
||||
"MNBL.easy": "Easy (5)",
|
||||
"MNBL.eclat": "Shard",
|
||||
|
||||
@@ -161,6 +161,7 @@
|
||||
"MNBL.failure": "Echec",
|
||||
"MNBL.heroicsuccess": "Succés Héroïque",
|
||||
"MNBL.dramaticfailure": "Echec Dramatique",
|
||||
"MNBL.oddresult": "Résultat impair — le dé compte pour 0",
|
||||
|
||||
"MNBL.attackmountbonus": "Attaquant monté vs def. au sol (+5)",
|
||||
"MNBL.targetdefense": "Défense adversaire",
|
||||
|
||||
@@ -132,7 +132,7 @@ export default class MournbladeItemSheet extends HandlebarsApplicationMixin(foun
|
||||
payload: chatData,
|
||||
})
|
||||
|
||||
const html = await renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData)
|
||||
const html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData)
|
||||
const chatOptions = {
|
||||
user: game.user.id,
|
||||
content: html,
|
||||
|
||||
@@ -11,7 +11,22 @@ export default class CompetenceDataModel extends foundry.abstract.TypeDataModel
|
||||
attribut2: new fields.StringField({ initial: "" }),
|
||||
attribut3: new fields.StringField({ initial: "" }),
|
||||
doublebonus: new fields.BooleanField({ initial: false }),
|
||||
predilections: new fields.ArrayField(new fields.StringField(), { initial: [] })
|
||||
predilections: new fields.ArrayField(
|
||||
new fields.SchemaField({
|
||||
name: new fields.StringField({ initial: "" }),
|
||||
used: new fields.BooleanField({ initial: false })
|
||||
}),
|
||||
{ initial: [] }
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
static migrateData(source) {
|
||||
if (Array.isArray(source.predilections)) {
|
||||
source.predilections = source.predilections.map(pred =>
|
||||
typeof pred === "string" ? { name: pred, used: false } : pred
|
||||
);
|
||||
}
|
||||
return super.migrateData(source);
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,12 @@ export class MournbladeActor extends Actor {
|
||||
// Calculate derived attributes
|
||||
const data = this.system;
|
||||
|
||||
if (this.type == 'personnage') {
|
||||
// Compute base health and max soul from attributes (derived, no DB write needed)
|
||||
data.sante.base = data.sante.bonus + (data.attributs.pui.value + data.attributs.tre.value) * 2 + 5;
|
||||
data.ame.fullmax = (data.attributs.cla.value + data.attributs.tre.value) * data.biodata.amemultiplier + 5;
|
||||
}
|
||||
|
||||
// Calculate total health
|
||||
data.sante.total = data.sante.base + data.sante.bonus;
|
||||
|
||||
@@ -32,7 +38,7 @@ export class MournbladeActor extends Actor {
|
||||
}
|
||||
|
||||
prepareDerivedData() {
|
||||
this.prepareData();
|
||||
super.prepareDerivedData();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -299,25 +305,6 @@ export class MournbladeActor extends Actor {
|
||||
return combat
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
prepareDerivedData() {
|
||||
|
||||
if (this.type == 'personnage') {
|
||||
let newSante = this.system.sante.bonus + (this.system.attributs.pui.value + this.system.attributs.tre.value) * 2 + 5
|
||||
if (this.system.sante.base != newSante && this._id) {
|
||||
// Only update if the actor already exists (has an _id)
|
||||
this.update({ 'system.sante.base': newSante })
|
||||
}
|
||||
let newAme = (this.system.attributs.cla.value + this.system.attributs.tre.value) * this.system.biodata.amemultiplier + 5
|
||||
if (this.system.ame.fullmax != newAme && this._id) {
|
||||
// Only update if the actor already exists (has an _id)
|
||||
this.update({ 'system.ame.fullmax': newAme })
|
||||
}
|
||||
}
|
||||
|
||||
super.prepareDerivedData()
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
_preUpdate(changed, options, user) {
|
||||
|
||||
@@ -583,8 +570,8 @@ export class MournbladeActor extends Actor {
|
||||
this.update({ 'system.ressources': ressources })
|
||||
ChatMessage.create({
|
||||
content: "L'utilisation de la capacité/arme a dépensé " + arme.system.nbressources + " ressources.",
|
||||
whisper: game.user._id,
|
||||
user: game.user._id
|
||||
whisper: game.user.id,
|
||||
user: game.user.id
|
||||
});
|
||||
} else {
|
||||
ui.notifications.warn("Points de ressources insuffisants.")
|
||||
@@ -735,7 +722,7 @@ export class MournbladeActor extends Actor {
|
||||
let arme = this.items.get(armeId)
|
||||
if (arme) {
|
||||
MournbladeUtility.createChatWithRollMode("GM", {
|
||||
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.hbs`, arme)
|
||||
content: await foundry.applications.handlebars.renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.hbs`, arme)
|
||||
}, arme)
|
||||
this.depenseRessources(arme)
|
||||
}
|
||||
@@ -751,7 +738,7 @@ export class MournbladeActor extends Actor {
|
||||
arme = this.prepareBouclier(arme)
|
||||
}
|
||||
//Unused rollData.degatsFormula = arme.system.totalDegats
|
||||
let roll = await new Roll(arme.system.totalDegats).roll()
|
||||
let roll = await new Roll(arme.system.totalDegats).evaluate()
|
||||
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"));
|
||||
let rollData = {
|
||||
degatsFormula: arme.system.totalDegats,
|
||||
|
||||
@@ -10,7 +10,7 @@ export class MournbladeCombat extends Combat {
|
||||
const c = this.combatants.get(ids[cId]);
|
||||
let id = c._id || c.id;
|
||||
let initBonus = c.actor ? c.actor.getInitiativeScore() : 0
|
||||
let roll = new Roll("1d10 + "+initBonus).roll({ async: false})
|
||||
let roll = await new Roll("1d10 + "+initBonus).evaluate()
|
||||
await MournbladeUtility.showDiceSoNice(roll, game.settings.get("core", "rollMode"))
|
||||
//console.log("Init bonus", initBonus, roll.total)
|
||||
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: roll.total } ]);
|
||||
|
||||
@@ -89,7 +89,7 @@ export class MournbladeCommands {
|
||||
if (command && command.func) {
|
||||
const result = command.func(content, msg, params);
|
||||
if (result == false) {
|
||||
RdDCommands._chatAnswer(msg, command.descr);
|
||||
MournbladeCommands._chatAnswer(msg, command.descr);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
@@ -98,8 +98,8 @@ export class MournbladeCommands {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async createChar(msg) {
|
||||
game.system.Mournblade.creator = new MournbladeActorCreate();
|
||||
game.system.Mournblade.creator.start();
|
||||
game.system.mournblade.creator = new MournbladeActorCreate();
|
||||
game.system.mournblade.creator.start();
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
||||
@@ -106,7 +106,7 @@ export class MournbladeItemSheet extends foundry.appv1.sheets.ItemSheet {
|
||||
payload: chatData,
|
||||
});
|
||||
|
||||
renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData).then(html => {
|
||||
foundry.applications.handlebars.renderTemplate('systems/fvtt-mournblade/templates/post-item.hbs', chatData).then(html => {
|
||||
let chatOptions = MournbladeUtility.chatDataSetup(html);
|
||||
ChatMessage.create(chatOptions)
|
||||
});
|
||||
|
||||
@@ -44,7 +44,7 @@ Hooks.once("init", async function () {
|
||||
};
|
||||
|
||||
/* -------------------------------------------- */
|
||||
game.socket.on("system.fvtt-mournblade-rpg", data => {
|
||||
game.socket.on("system.fvtt-mournblade", data => {
|
||||
MournbladeUtility.onSocketMesssage(data);
|
||||
});
|
||||
|
||||
@@ -119,7 +119,7 @@ Hooks.once("init", async function () {
|
||||
/* -------------------------------------------- */
|
||||
async function welcomeMessage() {
|
||||
const templateData = {};
|
||||
const html = await renderTemplate("systems/fvtt-mournblade/templates/chat-welcome-message.hbs", templateData);
|
||||
const html = await foundry.applications.handlebars.renderTemplate("systems/fvtt-mournblade/templates/chat-welcome-message.hbs", templateData);
|
||||
|
||||
ChatMessage.create({
|
||||
user: game.user.id,
|
||||
@@ -154,14 +154,14 @@ Hooks.once("ready", function () {
|
||||
ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !");
|
||||
ChatMessage.create({
|
||||
content: "<b>ATTENTION</b> Le joueur " + game.user.name + " n'est relié à aucun personnage !",
|
||||
user: game.user._id
|
||||
user: game.user.id
|
||||
});
|
||||
}
|
||||
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
|
||||
ui.notifications.info("Le token de du joueur n'est pas connecté à l'acteur !");
|
||||
ChatMessage.create({
|
||||
content: "<b>ATTENTION</b> Le token du joueur " + game.user.name + " n'est pas connecté à l'acteur !",
|
||||
user: game.user._id
|
||||
user: game.user.id
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@ export class MournbladeUtility {
|
||||
if (game.user.isGM) {
|
||||
MournbladeUtility.applyDegatsFromAttaque(rollData)
|
||||
} else {
|
||||
game.socket.emit("system.fvtt-mournblade", { name: "msg_apply_damage", data: { rolLData: rollData } })
|
||||
game.socket.emit("system.fvtt-mournblade", { name: "msg_apply_damage", data: { rollData: rollData } })
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -294,6 +294,7 @@ export class MournbladeUtility {
|
||||
if (diceValue % 2 == 1) {
|
||||
//console.log("PAIR/IMP2", diceValue)
|
||||
rollData.finalResult -= rollData.roll.terms[0].results[0].result // Substract value
|
||||
rollData.isImpair = true
|
||||
if (diceValue == 1 || diceValue == 11) {
|
||||
rollData.isDramatique = true
|
||||
rollData.isSuccess = false
|
||||
@@ -312,6 +313,7 @@ export class MournbladeUtility {
|
||||
rollData.isDramatique = ((rollData.finalResult - rollData.difficulte) <= -10)
|
||||
rollData.isPureSuccess = (rollData.isSuccess && !rollData.isHeroique)
|
||||
}
|
||||
rollData.isEchec = !rollData.isSuccess
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -608,7 +610,7 @@ export class MournbladeUtility {
|
||||
chatGM.whisper = this.getUsers(user => user.isGM);
|
||||
chatGM.content = "Blinde message of " + game.user.name + "<br>" + chatOptions.content;
|
||||
console.log("blindMessageToGM", chatGM);
|
||||
game.socket.emit("system.fvtt-weapons-of-the-gods", { msg: "msg_gm_chat_message", data: chatGM });
|
||||
game.socket.emit("system.fvtt-mournblade", { msg: "msg_gm_chat_message", data: chatGM });
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@@ -682,7 +684,7 @@ export class MournbladeUtility {
|
||||
let target = MournbladeUtility.getTarget()
|
||||
if (target) {
|
||||
rollData.defenderTokenId = target.id
|
||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId).actor
|
||||
let defender = game.canvas.tokens.get(rollData.defenderTokenId)?.actor
|
||||
rollData.defenderCombatValues = defender.getCombatValues()
|
||||
rollData.defender = defender.toObject() // Simpler
|
||||
rollData.defenderDefense = defender.getBestDefenseValue()
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000304
|
||||
MANIFEST-000316
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.709189 7f1c56bff6c0 Recovering log #302
|
||||
2026/01/09-16:51:34.720652 7f1c56bff6c0 Delete type=3 #300
|
||||
2026/01/09-16:51:34.720827 7f1c56bff6c0 Delete type=0 #302
|
||||
2026/01/09-17:10:52.171232 7f1c54bfb6c0 Level-0 table #307: started
|
||||
2026/01/09-17:10:52.171270 7f1c54bfb6c0 Level-0 table #307: 0 bytes OK
|
||||
2026/01/09-17:10:52.181182 7f1c54bfb6c0 Delete type=0 #305
|
||||
2026/01/09-17:10:52.181380 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.181415 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.642283 7fcfbdbfc6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.418728 7fcfbd3fb6c0 Level-0 table #319: started
|
||||
2026/04/01-22:38:41.418758 7fcfbd3fb6c0 Level-0 table #319: 0 bytes OK
|
||||
2026/04/01-22:38:41.455694 7fcfbd3fb6c0 Delete type=0 #317
|
||||
2026/04/01-22:38:41.627139 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at '!items!wv5EiePmPTpqFutt' @ 239 : 1
|
||||
2026/04/01-22:38:41.627156 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:41.644764 7fcfbd3fb6c0 Generated table #320@0: 48 keys, 14422 bytes
|
||||
2026/04/01-22:38:41.644788 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 14422 bytes
|
||||
2026/04/01-22:38:41.682337 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:41.682460 7fcfbd3fb6c0 Delete type=2 #235
|
||||
2026/04/01-22:38:41.682635 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!wv5EiePmPTpqFutt' @ 239 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.487537 7f1c56bff6c0 Recovering log #298
|
||||
2026/01/09-16:50:28.498450 7f1c56bff6c0 Delete type=3 #296
|
||||
2026/01/09-16:50:28.498515 7f1c56bff6c0 Delete type=0 #298
|
||||
2026/01/09-16:51:28.840653 7f1c54bfb6c0 Level-0 table #303: started
|
||||
2026/01/09-16:51:28.840708 7f1c54bfb6c0 Level-0 table #303: 0 bytes OK
|
||||
2026/01/09-16:51:28.847927 7f1c54bfb6c0 Delete type=0 #301
|
||||
2026/01/09-16:51:28.868475 7f1c54bfb6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.868551 7f1c54bfb6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.463555 7fcfbdbfc6c0 Log #314: 0 ops saved to Table #315 OK
|
||||
2026/04/01-22:37:22.463668 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/armes/000314.log: OK
|
||||
2026/04/01-22:37:22.469250 7fcfbdbfc6c0 Table #235: 48 entries OK
|
||||
2026/04/01-22:37:22.504609 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/armes; recovered 1 files; 14422 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/armes/MANIFEST-000316
Normal file
BIN
packs/armes/MANIFEST-000316
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.750271 7f1c55bfd6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.760726 7f1c55bfd6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.760813 7f1c55bfd6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.202603 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.202692 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.216180 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.229242 7f1c54bfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.229348 7f1c54bfb6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.261595 7fcfbf3ff6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.719103 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:41.719126 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:41.756352 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:41.891691 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at '!items!zzz9JrtWjELdoAfK' @ 120 : 1
|
||||
2026/04/01-22:38:41.891728 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:41.908679 7fcfbd3fb6c0 Generated table #319@0: 30 keys, 15890 bytes
|
||||
2026/04/01-22:38:41.908714 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 15890 bytes
|
||||
2026/04/01-22:38:41.945467 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:41.945642 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.051657 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!zzz9JrtWjELdoAfK' @ 120 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.529034 7f1c56bff6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.539837 7f1c56bff6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.539910 7f1c56bff6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.861880 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.861911 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.868272 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.868530 7f1c54bfb6c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.868572 7f1c54bfb6c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.088994 7fcfbf3ff6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:23.089110 7fcfbf3ff6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/dons/000313.log: OK
|
||||
2026/04/01-22:37:23.093521 7fcfbf3ff6c0 Table #234: 30 entries OK
|
||||
2026/04/01-22:37:23.118194 7fcfbf3ff6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/dons; recovered 1 files; 15890 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/dons/MANIFEST-000315
Normal file
BIN
packs/dons/MANIFEST-000315
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.736494 7f1c563fe6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.746896 7f1c563fe6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.747053 7f1c563fe6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.181524 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.181569 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.192560 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.229188 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.229310 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.085637 7fcfbe3fd6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.682720 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:41.682751 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:41.718990 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:41.830653 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1
|
||||
2026/04/01-22:38:41.830662 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:41.848348 7fcfbd3fb6c0 Generated table #319@0: 55 keys, 9727 bytes
|
||||
2026/04/01-22:38:41.848372 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 9727 bytes
|
||||
2026/04/01-22:38:41.886159 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:41.886277 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.051640 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!y47dBO3Mf5Pn7tOd' @ 220 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.515550 7f1c563fe6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.525696 7f1c563fe6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.525817 7f1c563fe6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.848057 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.848089 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.854366 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.868495 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.868541 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.833289 7fcfbe3fd6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:22.833392 7fcfbe3fd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/equipement/000313.log: OK
|
||||
2026/04/01-22:37:22.856591 7fcfbe3fd6c0 Table #234: 55 entries OK
|
||||
2026/04/01-22:37:22.888677 7fcfbe3fd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/equipement; recovered 1 files; 9727 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/equipement/MANIFEST-000315
Normal file
BIN
packs/equipement/MANIFEST-000315
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.777168 7f1c563fe6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.788037 7f1c563fe6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.788106 7f1c563fe6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.240948 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.241037 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.254088 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.274702 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.274758 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.634165 7fcfbdbfc6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:42.051800 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:42.051843 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:42.089219 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:42.200430 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at '!items!ui4JGsGwHNlSXVK3' @ 40 : 1
|
||||
2026/04/01-22:38:42.200441 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:42.218548 7fcfbd3fb6c0 Generated table #319@0: 10 keys, 6896 bytes
|
||||
2026/04/01-22:38:42.218580 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 6896 bytes
|
||||
2026/04/01-22:38:42.255918 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.256064 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.422069 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!ui4JGsGwHNlSXVK3' @ 40 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.558115 7f1c553fc6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.568519 7f1c553fc6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.568591 7f1c553fc6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.868695 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.868789 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.875865 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.896773 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.896837 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.451248 7fcfbdbfc6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:23.451351 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/heritages/000313.log: OK
|
||||
2026/04/01-22:37:23.457140 7fcfbdbfc6c0 Table #234: 10 entries OK
|
||||
2026/04/01-22:37:23.490124 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/heritages; recovered 1 files; 6896 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/heritages/MANIFEST-000315
Normal file
BIN
packs/heritages/MANIFEST-000315
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.790636 7f1c55bfd6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.801330 7f1c55bfd6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.801460 7f1c55bfd6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.229549 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.229666 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.240692 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.274685 7f1c54bfb6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.274739 7f1c54bfb6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.786247 7fcfbdbfc6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:42.163290 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:42.163313 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:42.200281 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:42.366891 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at '!items!xlyFCQClBZ1N3O1B' @ 68 : 1
|
||||
2026/04/01-22:38:42.366910 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:42.385070 7fcfbd3fb6c0 Generated table #319@0: 17 keys, 14917 bytes
|
||||
2026/04/01-22:38:42.385096 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 14917 bytes
|
||||
2026/04/01-22:38:42.421752 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.421887 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.422114 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!xlyFCQClBZ1N3O1B' @ 68 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.570757 7f1c56bff6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.582016 7f1c56bff6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.582087 7f1c56bff6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.876191 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.876280 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.882908 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.896793 7f1c54bfb6c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.896847 7f1c54bfb6c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.637270 7fcfbdbfc6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:23.637374 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/metiers/000313.log: OK
|
||||
2026/04/01-22:37:23.645251 7fcfbdbfc6c0 Table #234: 17 entries OK
|
||||
2026/04/01-22:37:23.673657 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/metiers; recovered 1 files; 14917 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/metiers/MANIFEST-000315
Normal file
BIN
packs/metiers/MANIFEST-000315
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.764312 7f1c553fc6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.774286 7f1c553fc6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.774446 7f1c553fc6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.216414 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.216464 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.228895 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.229275 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.229374 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.448063 7fcfbdbfc6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.793779 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:41.793809 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:41.830339 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:42.001564 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at '!items!yBvkQb9S64s908sR' @ 80 : 1
|
||||
2026/04/01-22:38:42.001576 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:42.019685 7fcfbd3fb6c0 Generated table #319@0: 20 keys, 9362 bytes
|
||||
2026/04/01-22:38:42.019710 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 9362 bytes
|
||||
2026/04/01-22:38:42.051292 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.051462 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.051684 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!yBvkQb9S64s908sR' @ 80 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.544082 7f1c55bfd6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.554845 7f1c55bfd6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.554920 7f1c55bfd6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.854478 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.854507 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.861732 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.868514 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.868561 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:23.264816 7fcfbdbfc6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:23.264952 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/origines/000313.log: OK
|
||||
2026/04/01-22:37:23.289206 7fcfbdbfc6c0 Table #234: 20 entries OK
|
||||
2026/04/01-22:37:23.314674 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/origines; recovered 1 files; 9362 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/origines/MANIFEST-000315
Normal file
BIN
packs/origines/MANIFEST-000315
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/pnj-creatures/000215.ldb
Normal file
BIN
packs/pnj-creatures/000215.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000199
|
||||
MANIFEST-000211
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
2026/01/09-16:51:34.660696 7f1c55bfd6c0 Recovering log #197
|
||||
2026/01/09-16:51:34.671894 7f1c55bfd6c0 Delete type=3 #195
|
||||
2026/01/09-16:51:34.672048 7f1c55bfd6c0 Delete type=0 #197
|
||||
2026/01/09-17:10:52.192700 7f1c54bfb6c0 Level-0 table #202: started
|
||||
2026/01/09-17:10:52.192739 7f1c54bfb6c0 Level-0 table #202: 0 bytes OK
|
||||
2026/01/09-17:10:52.202328 7f1c54bfb6c0 Delete type=0 #200
|
||||
2026/01/09-17:10:52.229219 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.229329 7f1c54bfb6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.087146 7fcfbe3fd6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.287661 7fcfbd3fb6c0 Level-0 table #214: started
|
||||
2026/04/01-22:38:41.307920 7fcfbd3fb6c0 Level-0 table #214: 423401 bytes OK
|
||||
2026/04/01-22:38:41.345247 7fcfbd3fb6c0 Delete type=0 #212
|
||||
2026/04/01-22:38:41.455826 7fcfbd3fb6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at '!folders!dwT9WnH0ZnpuZh92' @ 350 : 1
|
||||
2026/04/01-22:38:41.455836 7fcfbd3fb6c0 Compacting 2@0 + 0@1 files
|
||||
2026/04/01-22:38:41.481090 7fcfbd3fb6c0 Generated table #215@0: 694 keys, 423961 bytes
|
||||
2026/04/01-22:38:41.481126 7fcfbd3fb6c0 Compacted 2@0 + 0@1 files => 423961 bytes
|
||||
2026/04/01-22:38:41.516817 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:41.517090 7fcfbd3fb6c0 Delete type=2 #130
|
||||
2026/04/01-22:38:41.517372 7fcfbd3fb6c0 Delete type=2 #214
|
||||
2026/04/01-22:38:41.682592 7fcfbd3fb6c0 Manual compaction at level-0 from '!folders!dwT9WnH0ZnpuZh92' @ 350 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.436690 7f1c563fe6c0 Recovering log #193
|
||||
2026/01/09-16:50:28.446521 7f1c563fe6c0 Delete type=3 #191
|
||||
2026/01/09-16:50:28.446584 7f1c563fe6c0 Delete type=0 #193
|
||||
2026/01/09-16:51:28.813532 7f1c54bfb6c0 Level-0 table #198: started
|
||||
2026/01/09-16:51:28.813707 7f1c54bfb6c0 Level-0 table #198: 0 bytes OK
|
||||
2026/01/09-16:51:28.819883 7f1c54bfb6c0 Delete type=0 #196
|
||||
2026/01/09-16:51:28.840406 7f1c54bfb6c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.840496 7f1c54bfb6c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:21.569834 7fcfbe3fd6c0 Log #209: 0 ops saved to Table #210 OK
|
||||
2026/04/01-22:37:21.570038 7fcfbe3fd6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/pnj-creatures/000209.log: OK
|
||||
2026/04/01-22:37:21.611815 7fcfbe3fd6c0 Table #130: 694 entries OK
|
||||
2026/04/01-22:37:21.643585 7fcfbe3fd6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/pnj-creatures; recovered 1 files; 424214 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/pnj-creatures/MANIFEST-000211
Normal file
BIN
packs/pnj-creatures/MANIFEST-000211
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.724035 7f1c553fc6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.734486 7f1c553fc6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.734556 7f1c553fc6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.158587 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.158655 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.171088 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.181369 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.181406 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.823640 7fcfbebfe6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.756537 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:41.756569 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:41.793647 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:41.945777 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at '!items!veoS6Gtzj6Dq087V' @ 28 : 1
|
||||
2026/04/01-22:38:41.945788 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:41.964210 7fcfbd3fb6c0 Generated table #319@0: 7 keys, 2866 bytes
|
||||
2026/04/01-22:38:41.964236 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 2866 bytes
|
||||
2026/04/01-22:38:42.001278 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.001401 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.051672 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!veoS6Gtzj6Dq087V' @ 28 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.501376 7f1c55bfd6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.512581 7f1c55bfd6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.512717 7f1c55bfd6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.820000 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.820055 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.827380 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.840432 7f1c54bfb6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.840514 7f1c54bfb6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.645402 7fcfbebfe6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:22.645500 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/protection/000313.log: OK
|
||||
2026/04/01-22:37:22.651950 7fcfbebfe6c0 Table #234: 7 entries OK
|
||||
2026/04/01-22:37:22.678449 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/protection; recovered 1 files; 2866 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/protection/MANIFEST-000315
Normal file
BIN
packs/protection/MANIFEST-000315
Normal file
Binary file not shown.
0
packs/protection/lost/000313.log
Normal file
0
packs/protection/lost/000313.log
Normal file
0
packs/runes/000317.log
Normal file
0
packs/runes/000317.log
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000303
|
||||
MANIFEST-000315
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.832386 7f1c563fe6c0 Recovering log #301
|
||||
2026/01/09-16:51:34.843202 7f1c563fe6c0 Delete type=3 #299
|
||||
2026/01/09-16:51:34.843344 7f1c563fe6c0 Delete type=0 #301
|
||||
2026/01/09-17:10:52.274841 7f1c54bfb6c0 Level-0 table #306: started
|
||||
2026/01/09-17:10:52.274877 7f1c54bfb6c0 Level-0 table #306: 0 bytes OK
|
||||
2026/01/09-17:10:52.287335 7f1c54bfb6c0 Delete type=0 #304
|
||||
2026/01/09-17:10:52.322411 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.322458 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:24.423266 7fcfbebfe6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:42.422461 7fcfbd3fb6c0 Level-0 table #318: started
|
||||
2026/04/01-22:38:42.422525 7fcfbd3fb6c0 Level-0 table #318: 0 bytes OK
|
||||
2026/04/01-22:38:42.459226 7fcfbd3fb6c0 Delete type=0 #316
|
||||
2026/04/01-22:38:42.584078 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at '!items!xnCf2xIPzdsUoBTy' @ 180 : 1
|
||||
2026/04/01-22:38:42.584089 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:42.602420 7fcfbd3fb6c0 Generated table #319@0: 45 keys, 33708 bytes
|
||||
2026/04/01-22:38:42.602447 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 33708 bytes
|
||||
2026/04/01-22:38:42.639080 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.639236 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.751350 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!xnCf2xIPzdsUoBTy' @ 180 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.613889 7f1c55bfd6c0 Recovering log #297
|
||||
2026/01/09-16:50:28.631295 7f1c55bfd6c0 Delete type=3 #295
|
||||
2026/01/09-16:50:28.631390 7f1c55bfd6c0 Delete type=0 #297
|
||||
2026/01/09-16:51:28.897062 7f1c54bfb6c0 Level-0 table #302: started
|
||||
2026/01/09-16:51:28.897110 7f1c54bfb6c0 Level-0 table #302: 0 bytes OK
|
||||
2026/01/09-16:51:28.903400 7f1c54bfb6c0 Delete type=0 #300
|
||||
2026/01/09-16:51:28.924382 7f1c54bfb6c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.924436 7f1c54bfb6c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:24.256088 7fcfbebfe6c0 Log #313: 0 ops saved to Table #314 OK
|
||||
2026/04/01-22:37:24.256216 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/runes/000313.log: OK
|
||||
2026/04/01-22:37:24.260772 7fcfbebfe6c0 Table #234: 45 entries OK
|
||||
2026/04/01-22:37:24.306118 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/runes; recovered 1 files; 33708 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/runes/MANIFEST-000315
Normal file
BIN
packs/runes/MANIFEST-000315
Normal file
Binary file not shown.
0
packs/runes/lost/000313.log
Normal file
0
packs/runes/lost/000313.log
Normal file
Binary file not shown.
0
packs/scenes/000233.log
Normal file
0
packs/scenes/000233.log
Normal file
BIN
packs/scenes/000235.ldb
Normal file
BIN
packs/scenes/000235.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000219
|
||||
MANIFEST-000231
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
2026/01/09-16:51:34.860719 7f1c56bff6c0 Recovering log #217
|
||||
2026/01/09-16:51:34.871459 7f1c56bff6c0 Delete type=3 #215
|
||||
2026/01/09-16:51:34.871589 7f1c56bff6c0 Delete type=0 #217
|
||||
2026/01/09-17:10:52.299454 7f1c54bfb6c0 Level-0 table #222: started
|
||||
2026/01/09-17:10:52.299496 7f1c54bfb6c0 Level-0 table #222: 0 bytes OK
|
||||
2026/01/09-17:10:52.310412 7f1c54bfb6c0 Delete type=0 #220
|
||||
2026/01/09-17:10:52.322447 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.322484 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:24.720991 7fcfbebfe6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:42.496447 7fcfbd3fb6c0 Level-0 table #234: started
|
||||
2026/04/01-22:38:42.514574 7fcfbd3fb6c0 Level-0 table #234: 1561 bytes OK
|
||||
2026/04/01-22:38:42.546369 7fcfbd3fb6c0 Delete type=0 #232
|
||||
2026/04/01-22:38:42.695557 7fcfbd3fb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes.levels!ZDV2IwduhOXTxy72.defaultLevel0000' @ 0 : 0; will stop at '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1
|
||||
2026/04/01-22:38:42.695570 7fcfbd3fb6c0 Compacting 2@0 + 0@1 files
|
||||
2026/04/01-22:38:42.713545 7fcfbd3fb6c0 Generated table #235@0: 2 keys, 1561 bytes
|
||||
2026/04/01-22:38:42.713580 7fcfbd3fb6c0 Compacted 2@0 + 0@1 files => 1561 bytes
|
||||
2026/04/01-22:38:42.750980 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:42.751106 7fcfbd3fb6c0 Delete type=2 #150
|
||||
2026/04/01-22:38:42.751253 7fcfbd3fb6c0 Delete type=2 #234
|
||||
2026/04/01-22:38:42.751370 7fcfbd3fb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 4 : 1 .. '!scenes.levels!ZDV2IwduhOXTxy72.defaultLevel0000' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.649713 7f1c553fc6c0 Recovering log #213
|
||||
2026/01/09-16:50:28.659899 7f1c553fc6c0 Delete type=3 #211
|
||||
2026/01/09-16:50:28.659961 7f1c553fc6c0 Delete type=0 #213
|
||||
2026/01/09-16:51:28.917872 7f1c54bfb6c0 Level-0 table #218: started
|
||||
2026/01/09-16:51:28.917922 7f1c54bfb6c0 Level-0 table #218: 0 bytes OK
|
||||
2026/01/09-16:51:28.924225 7f1c54bfb6c0 Delete type=0 #216
|
||||
2026/01/09-16:51:28.924426 7f1c54bfb6c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.924459 7f1c54bfb6c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:24.580140 7fcfbebfe6c0 Log #229: 0 ops saved to Table #230 OK
|
||||
2026/04/01-22:37:24.580262 7fcfbebfe6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/scenes/000229.log: OK
|
||||
2026/04/01-22:37:24.580344 7fcfbebfe6c0 Table #150: 1 entries OK
|
||||
2026/04/01-22:37:24.606744 7fcfbebfe6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/scenes; recovered 1 files; 1383 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/scenes/MANIFEST-000231
Normal file
BIN
packs/scenes/MANIFEST-000231
Normal file
Binary file not shown.
0
packs/scenes/lost/000229.log
Normal file
0
packs/scenes/lost/000229.log
Normal file
0
packs/skills-creatures/000225.log
Normal file
0
packs/skills-creatures/000225.log
Normal file
@@ -1 +1 @@
|
||||
MANIFEST-000211
|
||||
MANIFEST-000223
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
2026/01/09-16:51:34.695631 7f1c55bfd6c0 Recovering log #209
|
||||
2026/01/09-16:51:34.705907 7f1c55bfd6c0 Delete type=3 #207
|
||||
2026/01/09-16:51:34.705976 7f1c55bfd6c0 Delete type=0 #209
|
||||
2026/01/09-17:10:52.148270 7f1c54bfb6c0 Level-0 table #214: started
|
||||
2026/01/09-17:10:52.148313 7f1c54bfb6c0 Level-0 table #214: 0 bytes OK
|
||||
2026/01/09-17:10:52.158341 7f1c54bfb6c0 Delete type=0 #212
|
||||
2026/01/09-17:10:52.181356 7f1c54bfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-17:10:52.181390 7f1c54bfb6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.455603 7fcfbdbfc6c0 Delete type=3 #1
|
||||
2026/04/01-22:38:41.382751 7fcfbd3fb6c0 Level-0 table #226: started
|
||||
2026/04/01-22:38:41.382773 7fcfbd3fb6c0 Level-0 table #226: 0 bytes OK
|
||||
2026/04/01-22:38:41.418599 7fcfbd3fb6c0 Delete type=0 #224
|
||||
2026/04/01-22:38:41.572002 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at '!items!t692JcsGHG4YJIlM' @ 41 : 1
|
||||
2026/04/01-22:38:41.572012 7fcfbd3fb6c0 Compacting 1@0 + 0@1 files
|
||||
2026/04/01-22:38:41.591101 7fcfbd3fb6c0 Generated table #227@0: 8 keys, 3853 bytes
|
||||
2026/04/01-22:38:41.591148 7fcfbd3fb6c0 Compacted 1@0 + 0@1 files => 3853 bytes
|
||||
2026/04/01-22:38:41.626677 7fcfbd3fb6c0 compacted to: files[ 0 1 0 0 0 0 0 ]
|
||||
2026/04/01-22:38:41.626940 7fcfbd3fb6c0 Delete type=2 #142
|
||||
2026/04/01-22:38:41.682623 7fcfbd3fb6c0 Manual compaction at level-0 from '!items!t692JcsGHG4YJIlM' @ 41 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
2026/01/09-16:50:28.473555 7f1c563fe6c0 Recovering log #205
|
||||
2026/01/09-16:50:28.484461 7f1c563fe6c0 Delete type=3 #203
|
||||
2026/01/09-16:50:28.484603 7f1c563fe6c0 Delete type=0 #205
|
||||
2026/01/09-16:51:28.833783 7f1c54bfb6c0 Level-0 table #210: started
|
||||
2026/01/09-16:51:28.833816 7f1c54bfb6c0 Level-0 table #210: 0 bytes OK
|
||||
2026/01/09-16:51:28.840184 7f1c54bfb6c0 Delete type=0 #208
|
||||
2026/01/09-16:51:28.840475 7f1c54bfb6c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2026/01/09-16:51:28.840550 7f1c54bfb6c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
|
||||
2026/04/01-22:37:22.274775 7fcfbdbfc6c0 Log #221: 0 ops saved to Table #222 OK
|
||||
2026/04/01-22:37:22.274891 7fcfbdbfc6c0 Archiving /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/skills-creatures/000221.log: OK
|
||||
2026/04/01-22:37:22.285503 7fcfbdbfc6c0 Table #142: 8 entries OK
|
||||
2026/04/01-22:37:22.309971 7fcfbdbfc6c0 **** Repaired leveldb /home/morr/foundry/foundrydata-dev/Data/systems/fvtt-mournblade/packs/skills-creatures; recovered 1 files; 3853 bytes. Some data may have been lost. ****
|
||||
|
||||
Binary file not shown.
BIN
packs/skills-creatures/MANIFEST-000223
Normal file
BIN
packs/skills-creatures/MANIFEST-000223
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user