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 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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue