Skip to content

Commit

Permalink
Actually fixes empty strings being localised
Browse files Browse the repository at this point in the history
  • Loading branch information
JujuAdams committed Aug 27, 2024
1 parent 2e21392 commit 755556c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/__ChatterboxClassLine/__ChatterboxClassLine.gml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ function __ChatterboxClassLine() constructor

static __Push = function(_substring)
{
if (_substring.text == "") return;

switch(_substring.type)
{
case "text":
Expand Down

0 comments on commit 755556c

Please sign in to comment.