Replace and fix mortal field
This commit is contained in:
@ -44,22 +44,13 @@ export const MONEY = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const MORTAL_CHOICES = {
|
export const MORTAL_CHOICES = {
|
||||||
"mankind": {label: "Mankind", value: "Mankind", defenseBonus: 0},
|
"mankind": {label: "Mankind", id: "mankind", defenseBonus: 0},
|
||||||
"elf": {label: "Elf", value: "Elf", defenseBonus: 0},
|
"elf": {label: "Elf", id: "elf", defenseBonus: 0},
|
||||||
"dwarf": {label: "Dwarf", value: "Dwarf", defenseBonus: 0},
|
"dwarf": {label: "Dwarf", id: "dwarf", defenseBonus: 0},
|
||||||
"halfelf": {label: "Half-Elf", value: "Half-Elf", defenseBonus: 0},
|
"halfelf": {label: "Half-Elf", id: "halfelf", defenseBonus: 0},
|
||||||
"halforc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0},
|
"halforc": {label: "Half-Orc", id: "halforc", defenseBonus: 0},
|
||||||
"gnome": {label: "Gnome", value: "Gnome", defenseBonus: 2},
|
"gnome": {label: "Gnome", id: "gnome", defenseBonus: 2},
|
||||||
"shirefolk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2},
|
"halflings": {label: "Halflings", id: "halflings", defenseBonus: 2}
|
||||||
"Elf": {label: "Elf", value: "Elf", defenseBonus: 0},
|
|
||||||
"Half-orc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0},
|
|
||||||
"Half-Orc": {label: "Half-Orc", value: "Half-Orc", defenseBonus: 0},
|
|
||||||
"Dwarf": {label: "Dwarf", value: "Dwarf", defenseBonus: 0},
|
|
||||||
"Half-elf": {label: "Half-Elf", value: "Half-Elf", defenseBonus: 0},
|
|
||||||
"Gnome": {label: "Gnome", value: "Gnome", defenseBonus: 2},
|
|
||||||
"Shire Folk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2},
|
|
||||||
"Shire folk": {label: "Shire Folk", value: "Shire Folk", defenseBonus: 2},
|
|
||||||
"Mankind": {label: "Human", value: "Human", defenseBonus: 0},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const FAVOR_CHOICES = {
|
export const FAVOR_CHOICES = {
|
||||||
|
@ -174,6 +174,31 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod
|
|||||||
/** @override */
|
/** @override */
|
||||||
static LOCALIZATION_PREFIXES = ["LETHALFANTASY.Character"]
|
static LOCALIZATION_PREFIXES = ["LETHALFANTASY.Character"]
|
||||||
|
|
||||||
|
static migrateData(data) {
|
||||||
|
if (data?.biodata?.mortal) {
|
||||||
|
if (!SYSTEM.MORTAL_CHOICES[data.biodata.mortal]) {
|
||||||
|
for (let key in SYSTEM.MORTAL_CHOICES) {
|
||||||
|
let mortal = SYSTEM.MORTAL_CHOICES[key]
|
||||||
|
if ( mortal.label.toLowerCase() === data.biodata.mortal.toLowerCase()) {
|
||||||
|
data.biodata.mortal = mortal.id
|
||||||
|
}
|
||||||
|
if ( data.biodata.mortal.toLowerCase().includes("shire")) {
|
||||||
|
data.biodata.mortal = "halflings"
|
||||||
|
}
|
||||||
|
if ( data.biodata.mortal.toLowerCase().includes("human")) {
|
||||||
|
data.biodata.mortal = "mankind"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!SYSTEM.MORTAL_CHOICES[data.biodata.mortal]) {
|
||||||
|
console.warn("Lethal Fantasy | Migrate data: Mortal not found, forced to mankind", data.biodata.mortal)
|
||||||
|
data.biodata.mortal = "mankind"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.migrateData(data)
|
||||||
|
}
|
||||||
|
|
||||||
prepareDerivedData() {
|
prepareDerivedData() {
|
||||||
super.prepareDerivedData();
|
super.prepareDerivedData();
|
||||||
let grit = 0
|
let grit = 0
|
||||||
@ -275,7 +300,7 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod
|
|||||||
actorName: this.parent.name,
|
actorName: this.parent.name,
|
||||||
actorImage: this.parent.img,
|
actorImage: this.parent.img,
|
||||||
combatId,
|
combatId,
|
||||||
combatantId ,
|
combatantId,
|
||||||
actorClass,
|
actorClass,
|
||||||
maxInit,
|
maxInit,
|
||||||
})
|
})
|
||||||
@ -302,10 +327,10 @@ export default class LethalFantasyCharacter extends foundry.abstract.TypeDataMod
|
|||||||
let formula = ""
|
let formula = ""
|
||||||
if (s.type === "spell") {
|
if (s.type === "spell") {
|
||||||
let dice = LethalFantasyUtils.getLethargyDice(s.system.level)
|
let dice = LethalFantasyUtils.getLethargyDice(s.system.level)
|
||||||
title = `${s.name} (Casting time: ${s.system.castingTime}, Lethargy: ${dice})`
|
title = `${s.name} (Casting time: ${s.system.castingTime}, Lethargy: ${dice})`
|
||||||
formula = `${s.system.castingTime}+${dice}`
|
formula = `${s.system.castingTime}+${dice}`
|
||||||
} else {
|
} else {
|
||||||
title = `${s.name} (Prayer time: ${s.system.prayerTime})`
|
title = `${s.name} (Prayer time: ${s.system.prayerTime})`
|
||||||
formula = `${s.system.prayerTime}`
|
formula = `${s.system.prayerTime}`
|
||||||
}
|
}
|
||||||
weaponsChoices.push({ id: s.id, name: title, combatProgressionDice: formula })
|
weaponsChoices.push({ id: s.id, name: title, combatProgressionDice: formula })
|
||||||
|
@ -1 +1 @@
|
|||||||
MANIFEST-000303
|
MANIFEST-000311
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2025/05/06-10:52:19.288970 7fc4e7fff6c0 Recovering log #300
|
2025/05/10-00:05:33.968698 7fc4edbfa6c0 Recovering log #309
|
||||||
2025/05/06-10:52:19.300271 7fc4e7fff6c0 Delete type=3 #298
|
2025/05/10-00:05:33.979040 7fc4edbfa6c0 Delete type=3 #307
|
||||||
2025/05/06-10:52:19.300323 7fc4e7fff6c0 Delete type=0 #300
|
2025/05/10-00:05:33.979178 7fc4edbfa6c0 Delete type=0 #309
|
||||||
2025/05/06-10:53:10.017977 7fc4e73ff6c0 Level-0 table #306: started
|
2025/05/10-00:18:03.109062 7fc4e73ff6c0 Level-0 table #314: started
|
||||||
2025/05/06-10:53:10.018020 7fc4e73ff6c0 Level-0 table #306: 0 bytes OK
|
2025/05/10-00:18:03.109102 7fc4e73ff6c0 Level-0 table #314: 0 bytes OK
|
||||||
2025/05/06-10:53:10.024080 7fc4e73ff6c0 Delete type=0 #304
|
2025/05/10-00:18:03.143055 7fc4e73ff6c0 Delete type=0 #312
|
||||||
2025/05/06-10:53:10.044191 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213868 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:53:10.044277 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213931 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
2025/05/06-10:45:53.342160 7fc4ecbf86c0 Recovering log #296
|
2025/05/09-22:47:41.220359 7fc4ecbf86c0 Recovering log #305
|
||||||
2025/05/06-10:45:53.353010 7fc4ecbf86c0 Delete type=3 #294
|
2025/05/09-22:47:41.271727 7fc4ecbf86c0 Delete type=3 #303
|
||||||
2025/05/06-10:45:53.353081 7fc4ecbf86c0 Delete type=0 #296
|
2025/05/09-22:47:41.271792 7fc4ecbf86c0 Delete type=0 #305
|
||||||
2025/05/06-10:51:12.708848 7fc4e73ff6c0 Level-0 table #301: started
|
2025/05/09-22:48:57.689333 7fc4e73ff6c0 Level-0 table #310: started
|
||||||
2025/05/06-10:51:12.714248 7fc4e73ff6c0 Level-0 table #301: 213746 bytes OK
|
2025/05/09-22:48:57.689356 7fc4e73ff6c0 Level-0 table #310: 0 bytes OK
|
||||||
2025/05/06-10:51:12.720525 7fc4e73ff6c0 Delete type=0 #299
|
2025/05/09-22:48:57.695394 7fc4e73ff6c0 Delete type=0 #308
|
||||||
2025/05/06-10:51:12.748598 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
2025/05/09-22:48:57.708739 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.748667 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at '!items!zw9RQocTdz3HRjZK' @ 564 : 1
|
2025/05/09-22:48:57.708810 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.748677 7fc4e73ff6c0 Compacting 1@1 + 1@2 files
|
|
||||||
2025/05/06-10:51:12.755813 7fc4e73ff6c0 Generated table #302@1: 485 keys, 214492 bytes
|
|
||||||
2025/05/06-10:51:12.755833 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 214492 bytes
|
|
||||||
2025/05/06-10:51:12.761728 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
|
||||||
2025/05/06-10:51:12.761886 7fc4e73ff6c0 Delete type=2 #289
|
|
||||||
2025/05/06-10:51:12.762144 7fc4e73ff6c0 Delete type=2 #301
|
|
||||||
2025/05/06-10:51:12.795034 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zw9RQocTdz3HRjZK' @ 564 : 1 .. '!items!zw9RQocTdz3HRjZK' @ 0 : 0; will stop at (end)
|
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000302
|
MANIFEST-000310
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2025/05/06-10:52:19.304583 7fc4ed3f96c0 Recovering log #299
|
2025/05/10-00:05:33.984133 7fc4e7fff6c0 Recovering log #308
|
||||||
2025/05/06-10:52:19.314806 7fc4ed3f96c0 Delete type=3 #297
|
2025/05/10-00:05:33.996710 7fc4e7fff6c0 Delete type=3 #306
|
||||||
2025/05/06-10:52:19.314910 7fc4ed3f96c0 Delete type=0 #299
|
2025/05/10-00:05:33.996815 7fc4e7fff6c0 Delete type=0 #308
|
||||||
2025/05/06-10:53:10.030599 7fc4e73ff6c0 Level-0 table #305: started
|
2025/05/10-00:18:03.143238 7fc4e73ff6c0 Level-0 table #313: started
|
||||||
2025/05/06-10:53:10.030635 7fc4e73ff6c0 Level-0 table #305: 0 bytes OK
|
2025/05/10-00:18:03.143277 7fc4e73ff6c0 Level-0 table #313: 0 bytes OK
|
||||||
2025/05/06-10:53:10.036964 7fc4e73ff6c0 Delete type=0 #303
|
2025/05/10-00:18:03.183026 7fc4e73ff6c0 Delete type=0 #311
|
||||||
2025/05/06-10:53:10.044214 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213885 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:53:10.044269 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213947 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
2025/05/06-10:45:53.355849 7fc4edbfa6c0 Recovering log #295
|
2025/05/09-22:47:41.276588 7fc4e7fff6c0 Recovering log #304
|
||||||
2025/05/06-10:45:53.366571 7fc4edbfa6c0 Delete type=3 #293
|
2025/05/09-22:47:41.333577 7fc4e7fff6c0 Delete type=3 #302
|
||||||
2025/05/06-10:45:53.366637 7fc4edbfa6c0 Delete type=0 #295
|
2025/05/09-22:47:41.333706 7fc4e7fff6c0 Delete type=0 #304
|
||||||
2025/05/06-10:51:12.732133 7fc4e73ff6c0 Level-0 table #300: started
|
2025/05/09-22:48:57.695515 7fc4e73ff6c0 Level-0 table #309: started
|
||||||
2025/05/06-10:51:12.736129 7fc4e73ff6c0 Level-0 table #300: 15304 bytes OK
|
2025/05/09-22:48:57.695539 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK
|
||||||
2025/05/06-10:51:12.742079 7fc4e73ff6c0 Delete type=0 #298
|
2025/05/09-22:48:57.702267 7fc4e73ff6c0 Delete type=0 #307
|
||||||
2025/05/06-10:51:12.748632 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
2025/05/09-22:48:57.708758 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.771871 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at '!items!zjvGljrLk5SshC9D' @ 65 : 1
|
2025/05/09-22:48:57.708826 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.771882 7fc4e73ff6c0 Compacting 1@1 + 1@2 files
|
|
||||||
2025/05/06-10:51:12.776442 7fc4e73ff6c0 Generated table #301@1: 31 keys, 15417 bytes
|
|
||||||
2025/05/06-10:51:12.776461 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 15417 bytes
|
|
||||||
2025/05/06-10:51:12.782727 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
|
||||||
2025/05/06-10:51:12.782835 7fc4e73ff6c0 Delete type=2 #288
|
|
||||||
2025/05/06-10:51:12.782952 7fc4e73ff6c0 Delete type=2 #300
|
|
||||||
2025/05/06-10:51:12.795077 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zjvGljrLk5SshC9D' @ 65 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end)
|
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000302
|
MANIFEST-000310
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2025/05/06-10:52:19.275594 7fc4ecbf86c0 Recovering log #299
|
2025/05/10-00:05:33.955181 7fc4ed3f96c0 Recovering log #308
|
||||||
2025/05/06-10:52:19.285984 7fc4ecbf86c0 Delete type=3 #297
|
2025/05/10-00:05:33.965658 7fc4ed3f96c0 Delete type=3 #306
|
||||||
2025/05/06-10:52:19.286069 7fc4ecbf86c0 Delete type=0 #299
|
2025/05/10-00:05:33.965713 7fc4ed3f96c0 Delete type=0 #308
|
||||||
2025/05/06-10:53:10.024277 7fc4e73ff6c0 Level-0 table #305: started
|
2025/05/10-00:18:03.078194 7fc4e73ff6c0 Level-0 table #313: started
|
||||||
2025/05/06-10:53:10.024336 7fc4e73ff6c0 Level-0 table #305: 0 bytes OK
|
2025/05/10-00:18:03.078263 7fc4e73ff6c0 Level-0 table #313: 0 bytes OK
|
||||||
2025/05/06-10:53:10.030435 7fc4e73ff6c0 Delete type=0 #303
|
2025/05/10-00:18:03.108887 7fc4e73ff6c0 Delete type=0 #311
|
||||||
2025/05/06-10:53:10.044204 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213845 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:53:10.044252 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213916 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
2025/05/06-10:45:53.317135 7fc4e7fff6c0 Recovering log #295
|
2025/05/09-22:47:41.162789 7fc4ed3f96c0 Recovering log #304
|
||||||
2025/05/06-10:45:53.339293 7fc4e7fff6c0 Delete type=3 #293
|
2025/05/09-22:47:41.216906 7fc4ed3f96c0 Delete type=3 #302
|
||||||
2025/05/06-10:45:53.339350 7fc4e7fff6c0 Delete type=0 #295
|
2025/05/09-22:47:41.217026 7fc4ed3f96c0 Delete type=0 #304
|
||||||
2025/05/06-10:51:12.783010 7fc4e73ff6c0 Level-0 table #300: started
|
2025/05/09-22:48:57.683143 7fc4e73ff6c0 Level-0 table #309: started
|
||||||
2025/05/06-10:51:12.787977 7fc4e73ff6c0 Level-0 table #300: 154604 bytes OK
|
2025/05/09-22:48:57.683210 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK
|
||||||
2025/05/06-10:51:12.794741 7fc4e73ff6c0 Delete type=0 #298
|
2025/05/09-22:48:57.689209 7fc4e73ff6c0 Delete type=0 #307
|
||||||
2025/05/06-10:51:12.795090 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
2025/05/09-22:48:57.708705 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.795140 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at '!items!zt8s7564ep1La4XQ' @ 281 : 1
|
2025/05/09-22:48:57.708793 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.795156 7fc4e73ff6c0 Compacting 1@1 + 1@2 files
|
|
||||||
2025/05/06-10:51:12.800410 7fc4e73ff6c0 Generated table #301@1: 95 keys, 121769 bytes
|
|
||||||
2025/05/06-10:51:12.800436 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 121769 bytes
|
|
||||||
2025/05/06-10:51:12.806480 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
|
||||||
2025/05/06-10:51:12.806620 7fc4e73ff6c0 Delete type=2 #288
|
|
||||||
2025/05/06-10:51:12.806871 7fc4e73ff6c0 Delete type=2 #300
|
|
||||||
2025/05/06-10:51:12.827417 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zt8s7564ep1La4XQ' @ 281 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end)
|
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000002
|
MANIFEST-000010
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2025/05/06-10:52:19.344307 7fc4e7fff6c0 Delete type=3 #1
|
2025/05/10-00:05:34.011461 7fc4ed3f96c0 Recovering log #8
|
||||||
2025/05/06-10:53:10.044408 7fc4e73ff6c0 Level-0 table #5: started
|
2025/05/10-00:05:34.021952 7fc4ed3f96c0 Delete type=3 #6
|
||||||
2025/05/06-10:53:10.051976 7fc4e73ff6c0 Level-0 table #5: 433603 bytes OK
|
2025/05/10-00:05:34.022058 7fc4ed3f96c0 Delete type=0 #8
|
||||||
2025/05/06-10:53:10.058524 7fc4e73ff6c0 Delete type=0 #3
|
2025/05/10-00:18:03.332662 7fc4e73ff6c0 Level-0 table #13: started
|
||||||
2025/05/06-10:53:10.078387 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.332695 7fc4e73ff6c0 Level-0 table #13: 0 bytes OK
|
||||||
|
2025/05/10-00:18:03.375786 7fc4e73ff6c0 Delete type=0 #11
|
||||||
|
2025/05/10-00:18:03.442324 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
|
2025/05/10-00:18:03.442380 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
|
8
packs-system/lf-spells-miracles/LOG.old
Normal file
8
packs-system/lf-spells-miracles/LOG.old
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2025/05/09-22:47:41.385708 7fc4ed3f96c0 Recovering log #4
|
||||||
|
2025/05/09-22:47:41.489161 7fc4ed3f96c0 Delete type=3 #2
|
||||||
|
2025/05/09-22:47:41.489215 7fc4ed3f96c0 Delete type=0 #4
|
||||||
|
2025/05/09-22:48:57.702401 7fc4e73ff6c0 Level-0 table #9: started
|
||||||
|
2025/05/09-22:48:57.702429 7fc4e73ff6c0 Level-0 table #9: 0 bytes OK
|
||||||
|
2025/05/09-22:48:57.708467 7fc4e73ff6c0 Delete type=0 #7
|
||||||
|
2025/05/09-22:48:57.708776 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
||||||
|
2025/05/09-22:48:57.708842 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!37mu4dxsSuftlnmP' @ 72057594037927935 : 1 .. '!items!zKOpU34oLziGJW6y' @ 0 : 0; will stop at (end)
|
Binary file not shown.
BIN
packs-system/lf-spells-miracles/MANIFEST-000010
Normal file
BIN
packs-system/lf-spells-miracles/MANIFEST-000010
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000302
|
MANIFEST-000310
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2025/05/06-10:52:19.317853 7fc4edbfa6c0 Recovering log #299
|
2025/05/10-00:05:33.999360 7fc4ecbf86c0 Recovering log #308
|
||||||
2025/05/06-10:52:19.327788 7fc4edbfa6c0 Delete type=3 #297
|
2025/05/10-00:05:34.009358 7fc4ecbf86c0 Delete type=3 #306
|
||||||
2025/05/06-10:52:19.327923 7fc4edbfa6c0 Delete type=0 #299
|
2025/05/10-00:05:34.009416 7fc4ecbf86c0 Delete type=0 #308
|
||||||
2025/05/06-10:53:10.037095 7fc4e73ff6c0 Level-0 table #305: started
|
2025/05/10-00:18:03.183209 7fc4e73ff6c0 Level-0 table #313: started
|
||||||
2025/05/06-10:53:10.037121 7fc4e73ff6c0 Level-0 table #305: 0 bytes OK
|
2025/05/10-00:18:03.183250 7fc4e73ff6c0 Level-0 table #313: 0 bytes OK
|
||||||
2025/05/06-10:53:10.044101 7fc4e73ff6c0 Delete type=0 #303
|
2025/05/10-00:18:03.213647 7fc4e73ff6c0 Delete type=0 #311
|
||||||
2025/05/06-10:53:10.044224 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213903 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:53:10.044260 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2025/05/10-00:18:03.213960 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
2025/05/06-10:45:53.369722 7fc4ed3f96c0 Recovering log #295
|
2025/05/09-22:47:41.336297 7fc4edbfa6c0 Recovering log #304
|
||||||
2025/05/06-10:45:53.379868 7fc4ed3f96c0 Delete type=3 #293
|
2025/05/09-22:47:41.382633 7fc4edbfa6c0 Delete type=3 #302
|
||||||
2025/05/06-10:45:53.379989 7fc4ed3f96c0 Delete type=0 #295
|
2025/05/09-22:47:41.382758 7fc4edbfa6c0 Delete type=0 #304
|
||||||
2025/05/06-10:51:12.720972 7fc4e73ff6c0 Level-0 table #300: started
|
2025/05/09-22:48:57.728106 7fc4e73ff6c0 Level-0 table #309: started
|
||||||
2025/05/06-10:51:12.724909 7fc4e73ff6c0 Level-0 table #300: 20719 bytes OK
|
2025/05/09-22:48:57.728152 7fc4e73ff6c0 Level-0 table #309: 0 bytes OK
|
||||||
2025/05/06-10:51:12.731912 7fc4e73ff6c0 Delete type=0 #298
|
2025/05/09-22:48:57.734043 7fc4e73ff6c0 Delete type=0 #307
|
||||||
2025/05/06-10:51:12.748619 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
2025/05/09-22:48:57.734162 7fc4e73ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.762241 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at '!items!zkK6ixtCsCw3RH9X' @ 62 : 1
|
2025/05/09-22:48:57.734181 7fc4e73ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
||||||
2025/05/06-10:51:12.762247 7fc4e73ff6c0 Compacting 1@1 + 1@2 files
|
|
||||||
2025/05/06-10:51:12.765506 7fc4e73ff6c0 Generated table #301@1: 27 keys, 20869 bytes
|
|
||||||
2025/05/06-10:51:12.765523 7fc4e73ff6c0 Compacted 1@1 + 1@2 files => 20869 bytes
|
|
||||||
2025/05/06-10:51:12.771435 7fc4e73ff6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
|
||||||
2025/05/06-10:51:12.771569 7fc4e73ff6c0 Delete type=2 #288
|
|
||||||
2025/05/06-10:51:12.771746 7fc4e73ff6c0 Delete type=2 #300
|
|
||||||
2025/05/06-10:51:12.795060 7fc4e73ff6c0 Manual compaction at level-1 from '!items!zkK6ixtCsCw3RH9X' @ 62 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end)
|
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user