fix: show full text in battle log and speech bubbles

Remove .slice(0, 120) truncation from battle log entries and
.slice(0, 60) from speech bubble calls. Increase bubble limits
to 200 chars, 24 chars/line, 8 lines so responses display fully.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-09 14:11:02 +00:00
co-authored by Claude Opus 4.6
parent 761c01f92f
commit 3a5f473d25
3 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -107,9 +107,9 @@ export const SKY_GRADIENT_BANDS = 6 // Number of sky gradient ba
export const GROUND_DEPTH_LINES = 12 // Ground gradient fade lines
export const PERSPECTIVE_GRID_LINES = 24 // Floor grid convergence lines
export const PILLAR_WIDTH = 8 // Side pillar frame width
export const SPEECH_BUBBLE_MAX_CHARS = 80 // Max chars in speech bubble
export const SPEECH_BUBBLE_WRAP = 18 // Chars per line in speech bubble
export const SPEECH_BUBBLE_MAX_LINES = 5 // Max lines in speech bubble
export const SPEECH_BUBBLE_MAX_CHARS = 200 // Max chars in speech bubble
export const SPEECH_BUBBLE_WRAP = 24 // Chars per line in speech bubble
export const SPEECH_BUBBLE_MAX_LINES = 8 // Max lines in speech bubble
export const SPEECH_BUBBLE_FONT_SIZE = 12 // Speech bubble font size
export const SPEECH_BUBBLE_DEFAULT_DURATION = 3 // Default speech bubble duration (seconds)