mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-26 17:05:01 +00:00
Another stupid fix.
This commit is contained in:
parent
7967bfc9f8
commit
198f1d3acf
@ -55,12 +55,16 @@ public class PlayerData
|
||||
notes.addAll(FUtil.stringToList(resultSet.getString("notes")));
|
||||
String tempTag = resultSet.getString("tag");
|
||||
//--
|
||||
if (!Strings.isNullOrEmpty(tempTag) && FUtil.containsChatColor(tempTag))
|
||||
if (!Strings.isNullOrEmpty(tempTag))
|
||||
{
|
||||
tempTag = FUtil.miniMessage(FUtil.colorizeAsComponentSection(tempTag));
|
||||
if (FUtil.containsChatColor(tempTag))
|
||||
{
|
||||
tempTag = FUtil.miniMessage(FUtil.colorizeAsComponentSection(tempTag));
|
||||
}
|
||||
|
||||
tag = FUtil.miniMessage(tempTag);
|
||||
}
|
||||
//--
|
||||
tag = FUtil.miniMessage(tempTag);
|
||||
discordID = resultSet.getString("discord_id");
|
||||
masterBuilder = resultSet.getBoolean("master_builder");
|
||||
rideMode = RideMode.valueOf(resultSet.getString("ride_mode").toUpperCase());
|
||||
|
Loading…
Reference in New Issue
Block a user