mirror of
https://github.com/TheDeus-Group/TFM-4.3-Reloaded.git
synced 2024-12-22 22:24:56 +00:00
Fix getIpBanList() returning UUID bans. Fixes #570
This commit is contained in:
parent
a15e39d7dd
commit
d6eb5bdcda
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ public class TFM_BanManager
|
|||
|
||||
public static List<TFM_Ban> getIpBanList()
|
||||
{
|
||||
return Collections.unmodifiableList(uuidBans);
|
||||
return Collections.unmodifiableList(ipBans);
|
||||
}
|
||||
|
||||
public static List<TFM_Ban> getUuidBanList()
|
||||
|
|
Loading…
Reference in a new issue