Fixes saving characters with multiple long-name languages. (#21262)

This is a bug that affects characters with multiple long language names:
`language":"Elyran+Standard=&Sol+Common=&Encoded+Audio+Language="`
This exceeds the limit of 50 characters for the language column, thus
bricking the saving.

The limit has been changed to 75 characters.

---------

Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
Matt Atlas
2025-09-29 22:07:10 +00:00
committed by GitHub
co-authored by Matt Atlas
parent 346e0e857a
commit eeefc04d3a
2 changed files with 63 additions and 0 deletions
@@ -0,0 +1,5 @@
--
-- Fixes saving a character with multiple languages with long names. PR #21262
--
ALTER TABLE `ss13_characters` MODIFY COLUMN `language` VARCHAR(75);