mobarena / MobArenaStats

An extension plugin for MobArena that collects arena session stats.
GNU General Public License v3.0
3 stars 2 forks source link

Internal error on non-UUID argument for `/ma delete-session-stats` #2

Open garbagemule opened 3 years ago

garbagemule commented 3 years ago

If you try to pass a non-UUID argument to the delete-session-stats command, the command throws an internal error with the infamous red "An internal error occurred..." message. This is because the command blindly accepts any input and doesn't catch the IllegalArgumentException thrown by UUID.fromString(String) on invalid input.

The plugin should catch the exception and provide the command sender with a proper error message.