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

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