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

@@ -11,6 +11,7 @@ public class AliasObject {
public String permissionMSG;
public Boolean costEnable;
public Boolean costConfirm;
public Double costPrice;
public Boolean costAllowBypass;
@@ -44,6 +45,7 @@ public class AliasObject {
String permissionMSG,
Boolean costEnable,
Boolean costConfirm,
Double costPrice,
Boolean costAllowBypass,
@@ -76,6 +78,7 @@ public class AliasObject {
this.permissionMSG = permissionMSG;
this.costEnable = costEnable;
this.costConfirm = costConfirm;
this.costPrice = costPrice;
this.costAllowBypass = costAllowBypass;