Fix a default value for disguise name being true, this means falling blocks can now have their name set properly on disguise construct

This commit is contained in:
libraryaddict 2021-12-28 06:10:59 +13:00
parent 61e021e463
commit 5e165e3c97

View file

@ -79,11 +79,11 @@ public abstract class Disguise {
@Getter
private String disguiseName;
/**
* Is the name allowed to be changed by Lib's Disguises if they do some option?
* Is the name specifically set to something by a third party?
*/
@Getter
@Setter
private boolean customDisguiseName = true;
private boolean customDisguiseName = false;
@Getter
@Setter
private boolean tallDisguisesVisible = DisguiseConfig.isTallSelfDisguises();