mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 12:41:46 +00:00
* Reopens runechat color tweak. Fully changes how the runechat color works with human mobs. - Ties Runechat color to DNA (unchangable via scramblers, or other methods like DNA modifying) - Runechat color is now a preference based thing and can be changed at mirrors. * Linter mint * Comment for comment's sake + Rerun cerestation CI/UNIT test because mouse ate a cable. * augh * reverts toml * Fixes a SQL query, good for final review. --------- Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
7 lines
291 B
SQL
7 lines
291 B
SQL
# Updates the DB from 58 to 59 ~SpaghettiBit
|
|
# Adds a runechat color preference to characters.
|
|
|
|
# Add runechat color after hair_gradient_alpha
|
|
ALTER TABLE `characters`
|
|
ADD COLUMN `runechat_color` VARCHAR(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#FFFFFF' AFTER `hair_gradient_alpha`;
|