oliverwoodings / HawkEye

Bukkit data logging plugin with web-based data browser
http://forums.bukkit.org/threads/admn-web-datalog-v0-2-web-browseable-logging-of-your-server-670-819.13048/
55 stars 39 forks source link

BUG: param t:2d doesn't work #117

Closed olympy closed 12 years ago

olympy commented 13 years ago

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

GoalieGuy6 commented 12 years ago

Fixed by this commit.