File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
surf-clan-api/src/main/kotlin/dev/slne/clan/api/clan
surf-clan-paper/src/main/kotlin/dev/slne/clan/paper/commands/arguments/color Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,7 @@ interface Clan : ClanView {
130130 ? : error(" Failed to parse default clan tag background color" )
131131 val DEFAULT_CLAN_TAG_FOREGROUND_COLOR : TextColor = TextColor .fromHexString(" #f0f4f7" )
132132 ? : error(" Failed to parse default clan tag foreground color" )
133- val DEFAULT_CLAN_TAG_SHADOW_COLOR : ShadowColor = ShadowColor .fromHexString(" #899098FF" )
134- ? : error(" Failed to parse default clan tag shadow color" )
133+ val DEFAULT_CLAN_TAG_SHADOW_COLOR : ShadowColor = ShadowColor .none()
135134
136135 val DEFAULT_CLAN_TAG_COLORS = ClanTagColor (
137136 DEFAULT_CLAN_TAG_FOREGROUND_COLOR ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ abstract class BaseHexColorArgument<T>(
1111 val normalized = HexColorParser .normalizeToRgba(info.currentInput())
1212 ? : throw CustomArgumentException .fromMessageBuilder(
1313 MessageBuilder ()
14- .append("Invalid hex color: ")
14+ .append("Failed to parse hex color code : ")
1515 .appendArgInput()
1616 )
1717
You can’t perform that action at this time.
0 commit comments