diff --git a/src/components/encounters/attacks/attackHandlers.ts b/src/components/encounters/attacks/attackHandlers.ts index 210f6e68..4e4e81a2 100644 --- a/src/components/encounters/attacks/attackHandlers.ts +++ b/src/components/encounters/attacks/attackHandlers.ts @@ -219,7 +219,7 @@ export async function handleNonMookMultipleTargets( const isMook = CS.isMook(targetChar) const toastMessage = isMook - ? `Took out ${effectiveWounds} ${effectiveWounds === 1 ? "mook" : "mooks"}` + ? `${attacker.name} took out ${effectiveWounds} ${targetChar.name}` : `Applied ${effectiveWounds} wound${effectiveWounds !== 1 ? "s" : ""} to ${targetChar.name}` toastSuccess(toastMessage) } diff --git a/src/components/encounters/attacks/combatHandlers.ts b/src/components/encounters/attacks/combatHandlers.ts index 5bdf9c44..7021c786 100644 --- a/src/components/encounters/attacks/combatHandlers.ts +++ b/src/components/encounters/attacks/combatHandlers.ts @@ -157,7 +157,7 @@ export function createWoundUpdate( const description = isMook && context.isMookTakedown - ? `${attacker.name} took out ${wounds} ${wounds === 1 ? "mook" : "mooks"}${defenseDesc}` + ? `${attacker.name} took out ${wounds} ${targetChar.name}${defenseDesc}` : `${attacker.name} attacked ${targetChar.name}${defenseDesc} for ${wounds} wounds` console.log(`[createWoundUpdate] Creating update for ${targetChar.name}:`, {