Only validate skull owner name length if using MySQL
This commit is contained in:
parent
d18a023e73
commit
dbb44ab5b9
1 changed files with 8 additions and 5 deletions
|
|
@ -5,6 +5,7 @@ import org.bukkit.block.Sign;
|
|||
import org.bukkit.block.Skull;
|
||||
import org.bukkit.block.sign.Side;
|
||||
|
||||
import net.coreprotect.config.Config;
|
||||
import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer;
|
||||
|
||||
public class Paper_v1_20 extends Paper_v1_17 implements PaperInterface {
|
||||
|
|
@ -23,12 +24,14 @@ public class Paper_v1_20 extends Paper_v1_17 implements PaperInterface {
|
|||
@Override
|
||||
public String getSkullOwner(Skull skull) {
|
||||
String owner = skull.getPlayerProfile().getName();
|
||||
if (Config.getGlobal().MYSQL) {
|
||||
if (owner.length() > 255 && skull.getPlayerProfile().getId() != null) {
|
||||
return skull.getPlayerProfile().getId().toString();
|
||||
}
|
||||
else if (owner.length() > 255) {
|
||||
return owner.substring(0, 255);
|
||||
}
|
||||
}
|
||||
|
||||
return owner;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue