1.2.0 Dev

Added an option for players to confirm when an alias costs. (Per alias adjustable)
This commit is contained in:
2023-05-03 22:35:46 +02:00
parent 1ae32b2b59
commit 546b827e02
18 changed files with 218 additions and 17 deletions

View File

@@ -13,6 +13,7 @@ public class SubAliasObject {
public String permissionMSG;
public Boolean costEnable;
public Boolean costConfirm;
public Double costPrice;
public Boolean costAllowBypass;
@@ -48,6 +49,7 @@ public class SubAliasObject {
String permissionMSG,
Boolean costEnable,
Boolean costConfirm,
Double costPrice,
Boolean costAllowBypass,
@@ -82,6 +84,7 @@ public class SubAliasObject {
this.permissionMSG = permissionMSG;
this.costEnable = costEnable;
this.costConfirm = costConfirm;
this.costPrice = costPrice;
this.costAllowBypass = costAllowBypass;