Ugh just remove the whole premium aspect to that scaling, its confusing to both end user and me. Who does it benefit? It might benefit sales, but it mostly drives every party into confusion.

This commit is contained in:
libraryaddict 2025-01-06 00:12:37 +13:00
parent 2c940a00f9
commit f6487381e5

View File

@ -543,16 +543,6 @@ public abstract class Disguise {
}
public void setScalePlayerToDisguise(boolean scalePlayerToDisguise) {
if (isScalePlayerToDisguise() == scalePlayerToDisguise) {
return;
}
if (!LibsPremium.isPremium() && !DisguiseConfig.isScaleSelfDisguises() && scalePlayerToDisguise) {
scalePlayerToDisguise = false;
LibsDisguises.getInstance().getLogger()
.info("You cannot use setScalePlayerToDisguise if it's disabled in the config without the Premium Plugin");
}
this.scalePlayerToDisguise = scalePlayerToDisguise;
adjustTallSelfDisguiseScale();
}