TFM refactor

This commit is contained in:
Telesphoreo 2020-11-22 23:59:56 -06:00
parent ebce0fc43e
commit 869397bf83
No known key found for this signature in database
GPG Key ID: 50B67E055A6F167C
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@
<dependency>
<groupId>me.totalfreedom</groupId>
<artifactId>TotalFreedomMod</artifactId>
<version>2020.9</version>
<version>2020.11.5</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -27,6 +27,6 @@ public class TFMHandler
public static boolean isStaff(String name)
{
return getTFM().sl.getEntryByName(name) != null;
return getTFM().al.getEntryByName(name) != null;
}
}