You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New installs using MySQL will now use the utf8mb4 dataset. This makes it possible to use emoji's in items. 😄
Old installs are not automatically upgraded, so emojis still won't work. To fix this, you can run the following MySQL query on your database: ALTER TABLE bec_chestdata_default CHANGE chest_data chest_data MEDIUMTEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL; If you have world groups, run this query once for every world group, making sure you get the table name correct. (You can run SHOW TABLES; to see what database tables you have.)