HawkEye

HawkEye

192k Downloads

BUG: param t:2d doesn't work

olympy opened this issue ยท 1 comments

commented

Mistake at line 107 of SearchParser.java:
if (c.equals("m") || c .equals("s") || c.equals("h"))
I hope it needs to look like:
if (c.equals("m") || c .equals("s") || c.equals("h") || c.equals("d") || c.equals("w"))

Not working ingame command example:
/hawk rollback p:Player1 t:2d

commented

Fixed by this commit.