Correction sur application tokens acteurs

This commit is contained in:
2025-10-17 00:32:42 +02:00
parent d68001b376
commit bc09b5050d
34 changed files with 120 additions and 109 deletions

View File

@@ -63,7 +63,7 @@ export class EcrymeActorSheet extends foundry.appv1.sheets.ActorSheet {
}
this.formData = formData;
console.log("PC : ", formData, this.object);
//console.log("PC : ", formData, this.object);
return formData;
}

View File

@@ -155,8 +155,8 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static getActorFromRollData(rollData) {
let actor = game.actors.get(rollData.actorId)
if (rollData.tokenId) {
let token = canvas.tokens.placeables.find(t => t.id == rollData.tokenId)
if (rollData.defenderTokenId) {
let token = canvas.tokens.placeables.find(t => t.id == rollData.defenderTokenId)
if (token) {
actor = token.actor
}
@@ -298,7 +298,7 @@ export class EcrymeUtility {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let rollData = message.getFlag("world", "ecryme-rolldata")
ui.notifications.info( game.i18n.localize("ECRY.chat.confrontselect"))
ui.notifications.info(game.i18n.localize("ECRY.chat.confrontselect"))
EcrymeUtility.manageConfrontation(rollData)
})
$(html).on("click", '.button-apply-cephaly-difficulty', event => {
@@ -311,7 +311,15 @@ export class EcrymeUtility {
$(html).on("click", '.button-apply-impact', event => {
let messageId = EcrymeUtility.findChatMessageId(event.currentTarget)
let message = game.messages.get(messageId)
let actor = game.actors.get($(event.currentTarget).data("actor-id"))
let tokenId = $(event.currentTarget).data("token-id")
let actor
if (!tokenId) {
actorId = $(event.currentTarget).data("actor-id")
actor = game.actors.get(actorId)
} else {
let token = canvas.tokens.placeables.find(t => t.id == tokenId)
actor = token?.actor
}
actor.modifyImpact($(event.currentTarget).data("impact-type"), $(event.currentTarget).data("impact"), 1)
})
$(html).on("click", '.button-apply-bonus', event => {
@@ -411,7 +419,7 @@ export class EcrymeUtility {
console.log("SOCKET MESSAGE", msg)
if (msg.name == "msg_gm_chat_message") {
let rollData = msg.data.rollData
if ( game.user.isGM ) {
if (game.user.isGM) {
let chatMsg = await this.createChatMessage(rollData.alias, "blindroll", {
content: await renderTemplate(msg.data.template, rollData),
whisper: game.user.id
@@ -715,11 +723,11 @@ export class EcrymeUtility {
/* -------------------------------------------- */
static async confirmDelete(actorSheet, li) {
let itemId = li.data("item-id");
let msgTxt = "<p>Are you sure to remove this Item ?";
let msgTxt = "<p>Etes vous certain de souhaiter envoyer cet item dans les limbes ?";
let buttons = {
delete: {
icon: '<i class="fas fa-check"></i>',
label: "Yes, remove it",
label: "Oui, retirez-le",
callback: () => {
actorSheet.actor.deleteEmbeddedDocuments("Item", [itemId]);
li.slideUp(200, () => actorSheet.render(false));
@@ -727,7 +735,7 @@ export class EcrymeUtility {
},
cancel: {
icon: '<i class="fas fa-times"></i>',
label: "Cancel"
label: "Annuler"
}
}
msgTxt += "</p>";

View File

@@ -5,7 +5,10 @@ export class EcrymeConfrontStartDialog extends Dialog {
/* -------------------------------------------- */
static async create(actor, rollData) {
if (!actor) throw new Error("Ecryme | No actor provided for confront dialog");
if (!rollData) throw new Error("Ecryme | No roll data provided for confront dialog");
if (actor?.token) rollData.tokenId = actor.token.id;
let options = { classes: ["fvtt-ecryme ecryme-confront-dialog"], width: 540, height: 'fit-content', 'z-index': 99999 }
let html = await foundry.applications.handlebars.renderTemplate('systems/fvtt-ecryme/templates/dialogs/confront-start-dialog.hbs', rollData);
return new EcrymeConfrontStartDialog(actor, rollData, html, options);

View File

@@ -1 +1 @@
MANIFEST-000221
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/10/02-22:42:43.315581 7ff26f7fe6c0 Recovering log #219
2025/10/02-22:42:43.325193 7ff26f7fe6c0 Delete type=3 #217
2025/10/02-22:42:43.325254 7ff26f7fe6c0 Delete type=0 #219
2025/10/02-22:46:10.718055 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.718108 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.724165 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737951 7ff26ebff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.935378 7f189effd6c0 Recovering log #223
2025/10/16-23:04:27.944998 7f189effd6c0 Delete type=3 #221
2025/10/16-23:04:27.945071 7f189effd6c0 Delete type=0 #223
2025/10/17-00:31:02.431129 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.431165 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.437211 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.444512 7f189e7fc6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/16-23:09:47.292043 7fd8d27fc6c0 Recovering log #215
2025/06/16-23:09:47.302177 7fd8d27fc6c0 Delete type=3 #213
2025/06/16-23:09:47.302224 7fd8d27fc6c0 Delete type=0 #215
2025/06/16-23:10:06.097208 7fd633fff6c0 Level-0 table #220: started
2025/06/16-23:10:06.097226 7fd633fff6c0 Level-0 table #220: 0 bytes OK
2025/06/16-23:10:06.103274 7fd633fff6c0 Delete type=0 #218
2025/06/16-23:10:06.109982 7fd633fff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.315581 7ff26f7fe6c0 Recovering log #219
2025/10/02-22:42:43.325193 7ff26f7fe6c0 Delete type=3 #217
2025/10/02-22:42:43.325254 7ff26f7fe6c0 Delete type=0 #219
2025/10/02-22:46:10.718055 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.718108 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.724165 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737951 7ff26ebff6c0 Manual compaction at level-0 from '!folders!1GrTlI1xWvaxdKRI' @ 72057594037927935 : 1 .. '!items!zs7krgXhDRndtqbl' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000158
MANIFEST-000162

View File

@@ -1,8 +1,8 @@
2025/10/02-22:42:43.369243 7ff26ffff6c0 Recovering log #156
2025/10/02-22:42:43.379551 7ff26ffff6c0 Delete type=3 #154
2025/10/02-22:42:43.379614 7ff26ffff6c0 Delete type=0 #156
2025/10/02-22:46:10.762665 7ff26ebff6c0 Level-0 table #161: started
2025/10/02-22:46:10.762700 7ff26ebff6c0 Level-0 table #161: 0 bytes OK
2025/10/02-22:46:10.769189 7ff26ebff6c0 Delete type=0 #159
2025/10/02-22:46:10.769383 7ff26ebff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.779762 7ff26ebff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.987583 7f189f7fe6c0 Recovering log #160
2025/10/16-23:04:27.998975 7f189f7fe6c0 Delete type=3 #158
2025/10/16-23:04:27.999065 7f189f7fe6c0 Delete type=0 #160
2025/10/17-00:31:02.437340 7f189e7fc6c0 Level-0 table #165: started
2025/10/17-00:31:02.437367 7f189e7fc6c0 Level-0 table #165: 0 bytes OK
2025/10/17-00:31:02.444287 7f189e7fc6c0 Delete type=0 #163
2025/10/17-00:31:02.444526 7f189e7fc6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/17-00:31:02.454473 7f189e7fc6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2025/06/16-23:09:47.347699 7fd8d17fa6c0 Recovering log #152
2025/06/16-23:09:47.357498 7fd8d17fa6c0 Delete type=3 #150
2025/06/16-23:09:47.357565 7fd8d17fa6c0 Delete type=0 #152
2025/06/16-23:10:06.110087 7fd633fff6c0 Level-0 table #157: started
2025/06/16-23:10:06.110111 7fd633fff6c0 Level-0 table #157: 0 bytes OK
2025/06/16-23:10:06.116396 7fd633fff6c0 Delete type=0 #155
2025/06/16-23:10:06.136268 7fd633fff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/06/16-23:10:06.136315 7fd633fff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.369243 7ff26ffff6c0 Recovering log #156
2025/10/02-22:42:43.379551 7ff26ffff6c0 Delete type=3 #154
2025/10/02-22:42:43.379614 7ff26ffff6c0 Delete type=0 #156
2025/10/02-22:46:10.762665 7ff26ebff6c0 Level-0 table #161: started
2025/10/02-22:46:10.762700 7ff26ebff6c0 Level-0 table #161: 0 bytes OK
2025/10/02-22:46:10.769189 7ff26ebff6c0 Delete type=0 #159
2025/10/02-22:46:10.769383 7ff26ebff6c0 Manual compaction at level-0 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.779762 7ff26ebff6c0 Manual compaction at level-1 from '!journal!wooTFYjEwh83FwgT' @ 72057594037927935 : 1 .. '!journal.pages!wooTFYjEwh83FwgT.xhc7hqoL8kdW6lrD' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000221
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/10/02-22:42:43.357117 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.366815 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.366872 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.756135 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.756193 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.762494 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.769374 7ff26ebff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.975607 7f18a4ffa6c0 Recovering log #223
2025/10/16-23:04:27.985618 7f18a4ffa6c0 Delete type=3 #221
2025/10/16-23:04:27.985677 7f18a4ffa6c0 Delete type=0 #223
2025/10/17-00:31:02.386862 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.386912 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.393931 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413626 7f189e7fc6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/16-23:09:47.333897 7fd8d1ffb6c0 Recovering log #215
2025/06/16-23:09:47.344025 7fd8d1ffb6c0 Delete type=3 #213
2025/06/16-23:09:47.344095 7fd8d1ffb6c0 Delete type=0 #215
2025/06/16-23:10:06.129980 7fd633fff6c0 Level-0 table #220: started
2025/06/16-23:10:06.130009 7fd633fff6c0 Level-0 table #220: 0 bytes OK
2025/06/16-23:10:06.136124 7fd633fff6c0 Delete type=0 #218
2025/06/16-23:10:06.136302 7fd633fff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.357117 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.366815 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.366872 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.756135 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.756193 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.762494 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.769374 7ff26ebff6c0 Manual compaction at level-0 from '!items!13IYF6BPUTivFZzB' @ 72057594037927935 : 1 .. '!items!oSutlbe9wyBZccmf' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000107
MANIFEST-000111

View File

@@ -1,8 +1,8 @@
2025/10/02-22:42:43.343031 7ff26ffff6c0 Recovering log #105
2025/10/02-22:42:43.353479 7ff26ffff6c0 Delete type=3 #103
2025/10/02-22:42:43.353550 7ff26ffff6c0 Delete type=0 #105
2025/10/02-22:46:10.730732 7ff26ebff6c0 Level-0 table #110: started
2025/10/02-22:46:10.730767 7ff26ebff6c0 Level-0 table #110: 0 bytes OK
2025/10/02-22:46:10.737713 7ff26ebff6c0 Delete type=0 #108
2025/10/02-22:46:10.737975 7ff26ebff6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.738002 7ff26ebff6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.962699 7f189f7fe6c0 Recovering log #109
2025/10/16-23:04:27.972819 7f189f7fe6c0 Delete type=3 #107
2025/10/16-23:04:27.972872 7f189f7fe6c0 Delete type=0 #109
2025/10/17-00:31:02.407461 7f189e7fc6c0 Level-0 table #114: started
2025/10/17-00:31:02.407488 7f189e7fc6c0 Level-0 table #114: 0 bytes OK
2025/10/17-00:31:02.413518 7f189e7fc6c0 Delete type=0 #112
2025/10/17-00:31:02.413653 7f189e7fc6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/17-00:31:02.413685 7f189e7fc6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2025/06/16-23:09:47.319459 7fd8d17fa6c0 Recovering log #101
2025/06/16-23:09:47.330217 7fd8d17fa6c0 Delete type=3 #99
2025/06/16-23:09:47.330266 7fd8d17fa6c0 Delete type=0 #101
2025/06/16-23:10:06.091049 7fd633fff6c0 Level-0 table #106: started
2025/06/16-23:10:06.091074 7fd633fff6c0 Level-0 table #106: 0 bytes OK
2025/06/16-23:10:06.097124 7fd633fff6c0 Delete type=0 #104
2025/06/16-23:10:06.109973 7fd633fff6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/06/16-23:10:06.109999 7fd633fff6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.343031 7ff26ffff6c0 Recovering log #105
2025/10/02-22:42:43.353479 7ff26ffff6c0 Delete type=3 #103
2025/10/02-22:42:43.353550 7ff26ffff6c0 Delete type=0 #105
2025/10/02-22:46:10.730732 7ff26ebff6c0 Level-0 table #110: started
2025/10/02-22:46:10.730767 7ff26ebff6c0 Level-0 table #110: 0 bytes OK
2025/10/02-22:46:10.737713 7ff26ebff6c0 Delete type=0 #108
2025/10/02-22:46:10.737975 7ff26ebff6c0 Manual compaction at level-0 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)
2025/10/02-22:46:10.738002 7ff26ebff6c0 Manual compaction at level-1 from '!scenes!DDibQQLAvyIq9y09' @ 72057594037927935 : 1 .. '!scenes!zvY1RwBhTfwdZIBa' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000221
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/10/02-22:42:43.301864 7ff26ffff6c0 Recovering log #219
2025/10/02-22:42:43.312602 7ff26ffff6c0 Delete type=3 #217
2025/10/02-22:42:43.312680 7ff26ffff6c0 Delete type=0 #219
2025/10/02-22:46:10.711801 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.711844 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.717835 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737937 7ff26ebff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.922340 7f189f7fe6c0 Recovering log #223
2025/10/16-23:04:27.932658 7f189f7fe6c0 Delete type=3 #221
2025/10/16-23:04:27.932743 7f189f7fe6c0 Delete type=0 #223
2025/10/17-00:31:02.394067 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.394095 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.400645 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413636 7f189e7fc6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/16-23:09:47.277128 7fd8d17fa6c0 Recovering log #215
2025/06/16-23:09:47.287371 7fd8d17fa6c0 Delete type=3 #213
2025/06/16-23:09:47.287436 7fd8d17fa6c0 Delete type=0 #215
2025/06/16-23:10:06.084470 7fd633fff6c0 Level-0 table #220: started
2025/06/16-23:10:06.084514 7fd633fff6c0 Level-0 table #220: 0 bytes OK
2025/06/16-23:10:06.090912 7fd633fff6c0 Delete type=0 #218
2025/06/16-23:10:06.109960 7fd633fff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.301864 7ff26ffff6c0 Recovering log #219
2025/10/02-22:42:43.312602 7ff26ffff6c0 Delete type=3 #217
2025/10/02-22:42:43.312680 7ff26ffff6c0 Delete type=0 #219
2025/10/02-22:46:10.711801 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.711844 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.717835 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737937 7ff26ebff6c0 Manual compaction at level-0 from '!folders!00Hn2nNarlL7b0DR' @ 72057594037927935 : 1 .. '!items!yozTUjNuc2rEGjFK' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000221
MANIFEST-000225

View File

@@ -1,7 +1,7 @@
2025/10/02-22:42:43.327925 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.339012 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.339080 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.724277 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.724304 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.730560 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737964 7ff26ebff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)
2025/10/16-23:04:27.948519 7f189ffff6c0 Recovering log #223
2025/10/16-23:04:27.959741 7f189ffff6c0 Delete type=3 #221
2025/10/16-23:04:27.959811 7f189ffff6c0 Delete type=0 #223
2025/10/17-00:31:02.400771 7f189e7fc6c0 Level-0 table #228: started
2025/10/17-00:31:02.400802 7f189e7fc6c0 Level-0 table #228: 0 bytes OK
2025/10/17-00:31:02.407358 7f189e7fc6c0 Delete type=0 #226
2025/10/17-00:31:02.413646 7f189e7fc6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/06/16-23:09:47.306863 7fd8d0ff96c0 Recovering log #215
2025/06/16-23:09:47.316443 7fd8d0ff96c0 Delete type=3 #213
2025/06/16-23:09:47.316496 7fd8d0ff96c0 Delete type=0 #215
2025/06/16-23:10:06.103419 7fd633fff6c0 Level-0 table #220: started
2025/06/16-23:10:06.103438 7fd633fff6c0 Level-0 table #220: 0 bytes OK
2025/06/16-23:10:06.109827 7fd633fff6c0 Delete type=0 #218
2025/06/16-23:10:06.109991 7fd633fff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)
2025/10/02-22:42:43.327925 7ff2749f96c0 Recovering log #219
2025/10/02-22:42:43.339012 7ff2749f96c0 Delete type=3 #217
2025/10/02-22:42:43.339080 7ff2749f96c0 Delete type=0 #219
2025/10/02-22:46:10.724277 7ff26ebff6c0 Level-0 table #224: started
2025/10/02-22:46:10.724304 7ff26ebff6c0 Level-0 table #224: 0 bytes OK
2025/10/02-22:46:10.730560 7ff26ebff6c0 Delete type=0 #222
2025/10/02-22:46:10.737964 7ff26ebff6c0 Manual compaction at level-0 from '!folders!DiwHbtGAkTYxtshX' @ 72057594037927935 : 1 .. '!items!zgNI2haxhBxBDBdl' @ 0 : 0; will stop at (end)

View File

@@ -15,7 +15,7 @@
<div>
<ul>
<li>Confrontation : {{rollData1.alias}} vs {{rollData2.alias}}</li>
<li><strong>Confrontation</strong> : {{rollData1.alias}} vs {{rollData2.alias}}</li>
<li>{{localize rollData1.skill.name}} ({{rollData1.skill.value}}) vs {{localize rollData2.skill.name}} ({{rollData2.skill.value}}) </li>
<li>{{rollData1.executionTotal}} vs {{rollData2.preservationTotal}} : {{marginExecution}}</li>
<li>{{rollData1.preservationTotal}} vs {{rollData2.executionTotal}} : {{marginPreservation}}</li>
@@ -32,21 +32,21 @@
<li>{{localize "ECRY.ui.effect"}} {{localize "ECRY.ui.execution"}} : {{effectExecution}}</li>
{{#if impactExecution}}
<li>Impact {{rollData2.alias}} : 1 {{localize (concat "ECRY.ui." impactExecution)}}</li>
<button class="button-apply-impact" data-actor-id="{{rollData2.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactExecution}}">{{localize "ECRY.ui.applyimpact"}}</button>
<button class="button-apply-impact" data-token-id="{{rollData2.tokenId}}" data-actor-id="{{rollData2.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactExecution}}">{{localize "ECRY.ui.applyimpact"}}</button>
{{/if}}
{{#if bonus2}}
<li>Bonus {{rollData2.alias}} : {{bonus2}}</li>
<button class="button-apply-bonus" data-actor-id="{{rollData2.actorId}}" data-bonus="{{bonus2}}">{{localize "ECRY.ui.applybonus"}}</button>
<button class="button-apply-bonus" data-token-id="{{rollData2.tokenId}}" data-actor-id="{{rollData2.actorId}}" data-bonus="{{bonus2}}">{{localize "ECRY.ui.applybonus"}}</button>
{{/if}}
<li>{{localize "ECRY.ui.effect"}} {{localize "ECRY.ui.preservation"}} : {{effectPreservation}}</li>
{{#if impactPreservation}}
<li>Impact {{rollData1.alias}} : 1 {{localize (concat "ECRY.ui." impactPreservation)}}</li>
<button class="button-apply-impact" data-actor-id="{{rollData1.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactPreservation}}">{{localize "ECRY.ui.applyimpact"}}</button>
<button class="button-apply-impact" data-token-id="{{rollData1.tokenId}}" data-actor-id="{{rollData1.actorId}}" data-impact-type={{rollData1.skill.categKey}} data-impact="{{impactPreservation}}">{{localize "ECRY.ui.applyimpact"}}</button>
{{/if}}
{{#if bonus1}}
<li>Bonus {{rollData1.alias}} : {{bonus1}}</li>
<button class="button-apply-bonus" data-actor-id="{{rollData1.actorId}}" data-bonus="{{bonus1}}">{{localize "ECRY.ui.applybonus"}}</button>
<button class="button-apply-bonus" data-token-id="{{rollData1.tokenId}}" data-actor-id="{{rollData1.actorId}}" data-bonus="{{bonus1}}">{{localize "ECRY.ui.applybonus"}}</button>
{{/if}}
</ul>
</div>