convert delay from double to int

This commit is contained in:
D3v1s0m 2023-06-07 15:44:54 +05:30
parent 321e4a39e6
commit eafb5a1f53
No known key found for this signature in database
GPG Key ID: 3B6EC35367B8D82E

@ -4,7 +4,7 @@ public class ZNpcsAction {
private String actionType; private String actionType;
private String clickType; private String clickType;
private String action; private String action;
private double delay; private int delay;
public String getActionType() { public String getActionType() {
return actionType; return actionType;
@ -18,7 +18,7 @@ public class ZNpcsAction {
return action; return action;
} }
public double getDelay() { public int getDelay() {
return delay; return delay;
} }
} }