- Fix banning bug + make plex name color config option work

This commit is contained in:
Taah
2022-02-24 23:50:11 -08:00
parent 90c2426987
commit f13bd8a5d5
13 changed files with 20 additions and 24 deletions

View File

@ -34,6 +34,10 @@ public class PlayerCache
public static PunishedPlayer getPunishedPlayer(UUID uuid)
{
if (!getPunishedPlayerMap().containsKey(uuid))
{
getPunishedPlayerMap().put(uuid, new PunishedPlayer(uuid));
}
return getPunishedPlayerMap().get(uuid);
}