Do not attempt fuzzy matching players

Fixes #541
This commit is contained in:
RoboMWM 2020-02-01 20:39:41 -08:00
parent d7dd5a8e97
commit 956bdbc688

View File

@ -3172,9 +3172,6 @@ public class GriefPrevention extends JavaPlugin
Player targetPlayer = this.getServer().getPlayerExact(name);
if(targetPlayer != null) return targetPlayer;
targetPlayer = this.getServer().getPlayer(name);
if(targetPlayer != null) return targetPlayer;
UUID bestMatchID = null;
//try exact match first