Skip to content

Commit 4067c61

Browse files
committed
Changed damage buttons and fixed them.
1 parent 73a3c63 commit 4067c61

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+161
-241
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion

module/chat.js

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -108,45 +108,6 @@ export const addChatMessageContextOptions = function (html, options) {
108108
return options;
109109
};
110110

111-
/* -------------------------------------------- */
112-
113-
export const addChatMessageButtons = function (msg, html, data) {
114-
// Hide blind rolls
115-
let blindable = html.find(".blindable");
116-
if (
117-
msg.blind &&
118-
!game.user.isGM &&
119-
blindable &&
120-
blindable.data("blind") === true
121-
) {
122-
blindable.replaceWith(
123-
"<div class='dice-roll'><div class='dice-result'><div class='dice-formula'>???</div></div></div>"
124-
);
125-
}
126-
// Buttons
127-
let roll = html.find(".damage-roll");
128-
if (roll.length > 0) {
129-
roll.append(
130-
$(
131-
`<div class="dice-damage"><button type="button" data-action="apply-damage" title="` +
132-
game.i18n.localize("WWN.messages.applyDamage") +
133-
`"><i class="fas fa-tint"></i></button></div>`
134-
)
135-
);
136-
}
137-
138-
const shockMessage = html.find(".shock-message");
139-
if (shockMessage.length > 0) {
140-
shockMessage.append(
141-
$(
142-
`<div class="dice-damage"><button type="button" data-action="apply-damage" title="` +
143-
game.i18n.localize("WWN.messages.applyShockDamage") +
144-
`"><i class="fas fa-tint"></i></button></div>`
145-
)
146-
);
147-
}
148-
};
149-
150111
/**
151112
* Apply rolled dice damage to the token or tokens which are currently controlled.
152113
* This allows for damage to be scaled by a multiplier to account for healing, critical hits, or resistance

module/item/entity.js

Lines changed: 23 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -112,55 +112,40 @@ export class WwnItem extends Item {
112112
if (!messageObj) return;
113113

114114
// Handle damage buttons (both types)
115-
if (button.dataset.action === 'damage' || button.dataset.action === 'apply-damage') {
116-
// Get the card that contains this button
117-
const card = button.closest('.wwn.chat-card, .chat-card, .message-content');
118-
if (!card) {
119-
console.warn("Could not find chat card for damage button");
115+
const action = button.dataset.action;
116+
117+
if (action === 'apply-damage' || action === 'apply-shock') {
118+
// Check for selected tokens
119+
const targets = this._getChatCardTargets(card);
120+
if (!targets.length) {
121+
ui.notifications.warn("You must have one or more tokens selected to apply damage.");
120122
return;
121123
}
122124

123-
// Check if this is a shock damage button
124-
const isShockDamage = button.closest('.shock-message') !== null;
125-
126125
let amount;
127-
if (isShockDamage) {
128-
// For shock damage, get the value from the shock message
129-
const shockMessage = button.closest('.shock-message');
130-
const shockTotal = shockMessage.querySelector('.dice-total');
131-
if (!shockTotal) {
132-
console.warn("Could not find shock damage total");
133-
return;
134-
}
135-
amount = parseInt(shockTotal.textContent);
136-
} else {
137-
// For regular damage, get the value from the damage roll
138-
const damageSection = card.querySelector('.damage-roll, .dice-roll');
139-
if (!damageSection) {
140-
console.warn("Could not find damage section in card:", card.innerHTML);
141-
return;
142-
}
143-
144-
const damageRoll = damageSection.querySelector('.dice-roll, .part-total');
145-
if (!damageRoll) {
146-
console.warn("Could not find damage roll in damage section");
147-
return;
148-
}
149126

150-
const total = damageRoll.querySelector('.dice-total, .part-total');
151-
if (!total) {
152-
console.warn("Could not find damage total");
153-
return;
127+
if (action === 'apply-shock') {
128+
// For shock damage, we can parse the number directly
129+
amount = parseInt(button.dataset.damage);
130+
} else {
131+
// For regular damage, we need to parse the HTML string
132+
const tempDiv = document.createElement('div');
133+
tempDiv.innerHTML = button.dataset.damage;
134+
const diceTotal = tempDiv.querySelector('.dice-total');
135+
if (diceTotal) {
136+
amount = parseInt(diceTotal.textContent);
154137
}
155-
156-
amount = parseInt(total.textContent);
157138
}
158139

159140
if (!isNaN(amount)) {
160-
applyChatCardDamage(amount, 1);
141+
// Apply the damage multiplier
142+
const multiplier = parseFloat(button.dataset.damageMultiplier) || 1;
143+
const finalAmount = Math.floor(amount * multiplier);
144+
console.log(`Applying damage: ${amount} × ${multiplier} = ${finalAmount}`);
145+
applyChatCardDamage(finalAmount, 1);
161146
return;
162147
} else {
163-
console.warn("Failed to parse damage amount");
148+
console.warn("Failed to parse damage amount:", button.dataset.damage);
164149
}
165150
}
166151

File renamed without changes.

packs/adventuring-gear/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002596
1+
MANIFEST-002598

packs/adventuring-gear/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.205 5adc Recovering log #2594
2-
2025/05/17-17:28:07.212 5adc Delete type=0 #2594
3-
2025/05/17-17:28:07.212 5adc Delete type=3 #2592
1+
2025/06/07-09:52:35.120 5470 Recovering log #2597
2+
2025/06/07-09:52:35.125 5470 Delete type=0 #2597
3+
2025/06/07-09:52:35.125 5470 Delete type=3 #2596

packs/adventuring-gear/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.284 258c Recovering log #2590
2-
2025/05/17-17:10:56.291 258c Delete type=0 #2590
3-
2025/05/17-17:10:56.291 258c Delete type=3 #2588
4-
2025/05/17-17:28:03.533 8b0 Level-0 table #2595: started
5-
2025/05/17-17:28:03.533 8b0 Level-0 table #2595: 0 bytes OK
6-
2025/05/17-17:28:03.536 8b0 Delete type=0 #2593
7-
2025/05/17-17:28:03.541 8b0 Manual compaction at level-0 from '!folders!1Dpio86BsnX6orBv' @ 72057594037927935 : 1 .. '!items!zK1IqUEgWev2MBEL' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.205 5adc Recovering log #2594
2+
2025/05/17-17:28:07.212 5adc Delete type=0 #2594
3+
2025/05/17-17:28:07.212 5adc Delete type=3 #2592
File renamed without changes.

packs/arts/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002593
1+
MANIFEST-002595

packs/arts/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.180 258c Recovering log #2591
2-
2025/05/17-17:28:07.185 258c Delete type=0 #2591
3-
2025/05/17-17:28:07.186 258c Delete type=3 #2589
1+
2025/06/07-09:52:35.095 5f54 Recovering log #2594
2+
2025/06/07-09:52:35.101 5f54 Delete type=0 #2594
3+
2025/06/07-09:52:35.101 5f54 Delete type=3 #2593

packs/arts/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.258 5adc Recovering log #2586
2-
2025/05/17-17:10:56.264 5adc Delete type=0 #2586
3-
2025/05/17-17:10:56.264 5adc Delete type=3 #2584
4-
2025/05/17-17:28:03.530 8b0 Level-0 table #2592: started
5-
2025/05/17-17:28:03.531 8b0 Level-0 table #2592: 0 bytes OK
6-
2025/05/17-17:28:03.532 8b0 Delete type=0 #2590
7-
2025/05/17-17:28:03.532 8b0 Manual compaction at level-0 from '!folders!2WpZVuJVhFyGOHSU' @ 72057594037927935 : 1 .. '!items.effects!uTCWUBkTGnrZ4sVO.3nt8FS7RYUcatK30' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.180 258c Recovering log #2591
2+
2025/05/17-17:28:07.185 258c Delete type=0 #2591
3+
2025/05/17-17:28:07.186 258c Delete type=3 #2589
Binary file not shown.
File renamed without changes.

packs/assets/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002588
1+
MANIFEST-002590

packs/assets/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.353 5524 Recovering log #2586
2-
2025/05/17-17:28:07.359 5524 Delete type=0 #2586
3-
2025/05/17-17:28:07.359 5524 Delete type=3 #2584
1+
2025/06/07-09:52:35.256 5470 Recovering log #2589
2+
2025/06/07-09:52:35.261 5470 Delete type=0 #2589
3+
2025/06/07-09:52:35.261 5470 Delete type=3 #2588

packs/assets/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.490 5adc Recovering log #2582
2-
2025/05/17-17:10:56.496 5adc Delete type=0 #2582
3-
2025/05/17-17:10:56.496 5adc Delete type=3 #2580
4-
2025/05/17-17:28:03.554 8b0 Level-0 table #2587: started
5-
2025/05/17-17:28:03.554 8b0 Level-0 table #2587: 0 bytes OK
6-
2025/05/17-17:28:03.555 8b0 Delete type=0 #2585
7-
2025/05/17-17:28:03.559 8b0 Manual compaction at level-0 from '!folders!1B0DRrQFPUsaT3Ur' @ 72057594037927935 : 1 .. '!items!y6gs4kky8lar51pl' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.353 5524 Recovering log #2586
2+
2025/05/17-17:28:07.359 5524 Delete type=0 #2586
3+
2025/05/17-17:28:07.359 5524 Delete type=3 #2584
Binary file not shown.

packs/creatures-of-a-far-age/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/creatures-of-a-far-age/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.287 652c Recovering log #2584
2-
2025/05/17-17:28:07.293 652c Delete type=0 #2584
3-
2025/05/17-17:28:07.293 652c Delete type=3 #2582
1+
2025/06/07-09:52:35.204 6fcc Recovering log #2587
2+
2025/06/07-09:52:35.209 6fcc Delete type=0 #2587
3+
2025/06/07-09:52:35.209 6fcc Delete type=3 #2586

packs/creatures-of-a-far-age/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.379 652c Recovering log #2580
2-
2025/05/17-17:10:56.388 652c Delete type=0 #2580
3-
2025/05/17-17:10:56.388 652c Delete type=3 #2578
4-
2025/05/17-17:28:03.548 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.548 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.550 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.550 8b0 Manual compaction at level-0 from '!actors!10U4LXXp9gppkdBa' @ 72057594037927935 : 1 .. '!actors.items!zTOCQJdPXWIJEDCY.S0yd6HpyVQzIz5kN' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.287 652c Recovering log #2584
2+
2025/05/17-17:28:07.293 652c Delete type=0 #2584
3+
2025/05/17-17:28:07.293 652c Delete type=3 #2582
File renamed without changes.

packs/gm-master-tables/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002589
1+
MANIFEST-002591

packs/gm-master-tables/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.271 5adc Recovering log #2587
2-
2025/05/17-17:28:07.277 5adc Delete type=0 #2587
3-
2025/05/17-17:28:07.277 5adc Delete type=3 #2585
1+
2025/06/07-09:52:35.191 5470 Recovering log #2590
2+
2025/06/07-09:52:35.196 5470 Delete type=0 #2590
3+
2025/06/07-09:52:35.197 5470 Delete type=3 #2589

packs/gm-master-tables/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.364 258c Recovering log #2583
2-
2025/05/17-17:10:56.370 258c Delete type=0 #2583
3-
2025/05/17-17:10:56.370 258c Delete type=3 #2581
4-
2025/05/17-17:28:03.544 8b0 Level-0 table #2588: started
5-
2025/05/17-17:28:03.544 8b0 Level-0 table #2588: 0 bytes OK
6-
2025/05/17-17:28:03.546 8b0 Delete type=0 #2586
7-
2025/05/17-17:28:03.550 8b0 Manual compaction at level-0 from '!tables!0aHNowVvpqcOitxG' @ 72057594037927935 : 1 .. '!tables.results!sz7YZ7j6O0eGuv1i.yeglgwHaI3qvQZnT' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.271 5adc Recovering log #2587
2+
2025/05/17-17:28:07.277 5adc Delete type=0 #2587
3+
2025/05/17-17:28:07.277 5adc Delete type=3 #2585
File renamed without changes.

packs/gm-subtables/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002589
1+
MANIFEST-002591

packs/gm-subtables/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.255 258c Recovering log #2587
2-
2025/05/17-17:28:07.260 258c Delete type=0 #2587
3-
2025/05/17-17:28:07.261 258c Delete type=3 #2585
1+
2025/06/07-09:52:35.175 5f54 Recovering log #2590
2+
2025/06/07-09:52:35.180 5f54 Delete type=0 #2590
3+
2025/06/07-09:52:35.180 5f54 Delete type=3 #2589

packs/gm-subtables/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.344 5524 Recovering log #2583
2-
2025/05/17-17:10:56.350 5524 Delete type=0 #2583
3-
2025/05/17-17:10:56.351 5524 Delete type=3 #2581
4-
2025/05/17-17:28:03.546 8b0 Level-0 table #2588: started
5-
2025/05/17-17:28:03.546 8b0 Level-0 table #2588: 0 bytes OK
6-
2025/05/17-17:28:03.548 8b0 Delete type=0 #2586
7-
2025/05/17-17:28:03.550 8b0 Manual compaction at level-0 from '!tables!07slhaavL0Y2GlC8' @ 72057594037927935 : 1 .. '!tables.results!zvmgqmrMPn1uPn3s.vu0j5cl1yYAGlcUU' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.255 258c Recovering log #2587
2+
2025/05/17-17:28:07.260 258c Delete type=0 #2587
3+
2025/05/17-17:28:07.261 258c Delete type=3 #2585
Binary file not shown.
File renamed without changes.

packs/instinct/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/instinct/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.166 5adc Recovering log #2584
2-
2025/05/17-17:28:07.172 5adc Delete type=0 #2584
3-
2025/05/17-17:28:07.172 5adc Delete type=3 #2582
1+
2025/06/07-09:52:35.084 5470 Recovering log #2587
2+
2025/06/07-09:52:35.089 5470 Delete type=0 #2587
3+
2025/06/07-09:52:35.089 5470 Delete type=3 #2586

packs/instinct/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.245 258c Recovering log #2580
2-
2025/05/17-17:10:56.252 258c Delete type=0 #2580
3-
2025/05/17-17:10:56.252 258c Delete type=3 #2578
4-
2025/05/17-17:28:03.523 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.523 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.526 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.532 8b0 Manual compaction at level-0 from '!tables!328FVFOWsYIHOzMr' @ 72057594037927935 : 1 .. '!tables.results!xq6rwhNERi8vSReO.fBDTZaGoXsBZdrsx' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.166 5adc Recovering log #2584
2+
2025/05/17-17:28:07.172 5adc Delete type=0 #2584
3+
2025/05/17-17:28:07.172 5adc Delete type=3 #2582
Binary file not shown.

packs/magic-item-masters/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/magic-item-masters/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.244 5adc Recovering log #2584
2-
2025/05/17-17:28:07.249 5adc Delete type=0 #2584
3-
2025/05/17-17:28:07.249 5adc Delete type=3 #2582
1+
2025/06/07-09:52:35.164 5470 Recovering log #2587
2+
2025/06/07-09:52:35.170 5470 Delete type=0 #2587
3+
2025/06/07-09:52:35.170 5470 Delete type=3 #2586

packs/magic-item-masters/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.332 258c Recovering log #2580
2-
2025/05/17-17:10:56.338 258c Delete type=0 #2580
3-
2025/05/17-17:10:56.338 258c Delete type=3 #2578
4-
2025/05/17-17:28:03.542 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.542 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.544 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.550 8b0 Manual compaction at level-0 from '!tables!4iUOhYpQ2IWYYQbL' @ 72057594037927935 : 1 .. '!tables.results!scGwW7STysk3CzcV.H6HCJKgRJ1MYCDxk' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.244 5adc Recovering log #2584
2+
2025/05/17-17:28:07.249 5adc Delete type=0 #2584
3+
2025/05/17-17:28:07.249 5adc Delete type=3 #2582

packs/magic-items/002589.log

-1.83 KB
Binary file not shown.

packs/magic-items/002591.ldb

1.58 KB
Binary file not shown.
File renamed without changes.

packs/magic-items/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002588
1+
MANIFEST-002590

packs/magic-items/LOG

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
2025/05/17-17:28:07.219 258c Recovering log #2586
2-
2025/05/17-17:28:07.225 258c Delete type=0 #2586
3-
2025/05/17-17:28:07.225 258c Delete type=3 #2584
1+
2025/06/07-09:52:35.131 5f54 Recovering log #2589
2+
2025/06/07-09:52:35.131 5f54 Level-0 table #2591: started
3+
2025/06/07-09:52:35.141 5f54 Level-0 table #2591: 1616 bytes OK
4+
2025/06/07-09:52:35.145 5f54 Delete type=0 #2589
5+
2025/06/07-09:52:35.146 5f54 Delete type=3 #2588

packs/magic-items/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.303 5524 Recovering log #2582
2-
2025/05/17-17:10:56.310 5524 Delete type=0 #2582
3-
2025/05/17-17:10:56.310 5524 Delete type=3 #2580
4-
2025/05/17-17:28:03.538 8b0 Level-0 table #2587: started
5-
2025/05/17-17:28:03.538 8b0 Level-0 table #2587: 0 bytes OK
6-
2025/05/17-17:28:03.539 8b0 Delete type=0 #2585
7-
2025/05/17-17:28:03.541 8b0 Manual compaction at level-0 from '!items!00K5m6EBITgjRywF' @ 72057594037927935 : 1 .. '!items!z6F5WaIAo6er8VAG' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.219 258c Recovering log #2586
2+
2025/05/17-17:28:07.225 258c Delete type=0 #2586
3+
2025/05/17-17:28:07.225 258c Delete type=3 #2584
Binary file not shown.
File renamed without changes.

packs/magic-tables/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/magic-tables/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.232 5524 Recovering log #2584
2-
2025/05/17-17:28:07.237 5524 Delete type=0 #2584
3-
2025/05/17-17:28:07.238 5524 Delete type=3 #2582
1+
2025/06/07-09:52:35.152 9008 Recovering log #2587
2+
2025/06/07-09:52:35.158 9008 Delete type=0 #2587
3+
2025/06/07-09:52:35.158 9008 Delete type=3 #2586

packs/magic-tables/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.319 5adc Recovering log #2580
2-
2025/05/17-17:10:56.325 5adc Delete type=0 #2580
3-
2025/05/17-17:10:56.325 5adc Delete type=3 #2578
4-
2025/05/17-17:28:03.540 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.540 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.541 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.541 8b0 Manual compaction at level-0 from '!tables!15l8vsBmHeKyd3cc' @ 72057594037927935 : 1 .. '!tables.results!xG26UX9BribuXuH9.jO7krtIN9AOBfZtz' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.232 5524 Recovering log #2584
2+
2025/05/17-17:28:07.237 5524 Delete type=0 #2584
3+
2025/05/17-17:28:07.238 5524 Delete type=3 #2582
Binary file not shown.
File renamed without changes.

packs/ose-monsters/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/ose-monsters/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.302 5524 Recovering log #2584
2-
2025/05/17-17:28:07.308 5524 Delete type=0 #2584
3-
2025/05/17-17:28:07.309 5524 Delete type=3 #2582
1+
2025/06/07-09:52:35.217 5470 Recovering log #2587
2+
2025/06/07-09:52:35.222 5470 Delete type=0 #2587
3+
2025/06/07-09:52:35.222 5470 Delete type=3 #2586

packs/ose-monsters/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.405 5adc Recovering log #2580
2-
2025/05/17-17:10:56.413 5adc Delete type=0 #2580
3-
2025/05/17-17:10:56.413 5adc Delete type=3 #2578
4-
2025/05/17-17:28:03.551 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.551 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.553 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.559 8b0 Manual compaction at level-0 from '!actors!00UAmjX4P9e6jdWy' @ 72057594037927935 : 1 .. '!actors.items!zJMnx1wRAIOqef5J.zXVsvgBihUeTTvFa' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.302 5524 Recovering log #2584
2+
2025/05/17-17:28:07.308 5524 Delete type=0 #2584
3+
2025/05/17-17:28:07.309 5524 Delete type=3 #2582
Binary file not shown.
File renamed without changes.

packs/ose-spells/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002586
1+
MANIFEST-002588

packs/ose-spells/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.321 5524 Recovering log #2584
2-
2025/05/17-17:28:07.328 5524 Delete type=0 #2584
3-
2025/05/17-17:28:07.328 5524 Delete type=3 #2582
1+
2025/06/07-09:52:35.232 5470 Recovering log #2587
2+
2025/06/07-09:52:35.238 5470 Delete type=0 #2587
3+
2025/06/07-09:52:35.238 5470 Delete type=3 #2586

packs/ose-spells/LOG.old

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2025/05/17-17:10:56.437 5adc Recovering log #2580
2-
2025/05/17-17:10:56.449 5adc Delete type=0 #2580
3-
2025/05/17-17:10:56.450 5adc Delete type=3 #2578
4-
2025/05/17-17:28:03.557 8b0 Level-0 table #2585: started
5-
2025/05/17-17:28:03.557 8b0 Level-0 table #2585: 0 bytes OK
6-
2025/05/17-17:28:03.559 8b0 Delete type=0 #2583
7-
2025/05/17-17:28:03.559 8b0 Manual compaction at level-0 from '!items!0TZ2UzncewM9vF29' @ 72057594037927935 : 1 .. '!items!yLZmCS5ImcJyFZOj' @ 0 : 0; will stop at (end)
1+
2025/05/17-17:28:07.321 5524 Recovering log #2584
2+
2025/05/17-17:28:07.328 5524 Delete type=0 #2584
3+
2025/05/17-17:28:07.328 5524 Delete type=3 #2582
Binary file not shown.
File renamed without changes.

packs/skills/CURRENT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MANIFEST-002587
1+
MANIFEST-002589

packs/skills/LOG

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2025/05/17-17:28:07.194 5524 Recovering log #2585
2-
2025/05/17-17:28:07.199 5524 Delete type=0 #2585
3-
2025/05/17-17:28:07.200 5524 Delete type=3 #2583
1+
2025/06/07-09:52:35.109 9008 Recovering log #2588
2+
2025/06/07-09:52:35.114 9008 Delete type=0 #2588
3+
2025/06/07-09:52:35.114 9008 Delete type=3 #2587

0 commit comments

Comments
 (0)