convert delay from double to int
This commit is contained in:
parent
321e4a39e6
commit
eafb5a1f53
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ public class ZNpcsAction {
|
|||
private String actionType;
|
||||
private String clickType;
|
||||
private String action;
|
||||
private double delay;
|
||||
private int delay;
|
||||
|
||||
public String getActionType() {
|
||||
return actionType;
|
||||
|
@ -18,7 +18,7 @@ public class ZNpcsAction {
|
|||
return action;
|
||||
}
|
||||
|
||||
public double getDelay() {
|
||||
public int getDelay() {
|
||||
return delay;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue