revert dbd0a4

This commit is contained in:
Len 2022-05-24 21:23:29 +02:00
parent 0611f5d695
commit a4345dcd7c

View File

@ -2840,7 +2840,6 @@ public class GriefPrevention extends JavaPlugin
static void cacheUUIDNamePair(UUID playerID, String playerName)
{
//store the reverse mapping
playerNameCache.put(playerID, playerName);
GriefPrevention.instance.playerNameToIDMap.put(playerName, playerID);
GriefPrevention.instance.playerNameToIDMap.put(playerName.toLowerCase(), playerID);
}