From d0f3a550b77a78414f4be3b6ccf74661a6d96bc4 Mon Sep 17 00:00:00 2001 From: LoafyLemon Date: Tue, 28 May 2024 15:39:10 +0100 Subject: [PATCH] Bug fix * Fixed wrongly assigned xsize for the text displayable in kinetic text --- game/scripts/utility/text_tags.rpy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/scripts/utility/text_tags.rpy b/game/scripts/utility/text_tags.rpy index cf1295f8..055158f0 100644 --- a/game/scripts/utility/text_tags.rpy +++ b/game/scripts/utility/text_tags.rpy @@ -61,7 +61,7 @@ init python: @renpy.pure def text_tag_pulse(tag, argument, contents): text = contents[0][1] - d = At(Text(text, style="what", color=argument, xsize=32), pulse_text) + d = At(Text(text, style="what", color=argument), pulse_text) return [(renpy.TEXT_DISPLAYABLE, d)] @renpy.pure @@ -74,7 +74,7 @@ init python: @renpy.pure def text_tag_shudder(tag, argument, contents): text = contents[0][1] - d = At(Text(text, style="what", color=argument, xsize=32), shudder_text) + d = At(Text(text, style="what", color=argument), shudder_text) return [(renpy.TEXT_DISPLAYABLE, d)] def random_timer(t, pause, rotation):