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> <dependency>
<groupId>me.totalfreedom</groupId> <groupId>me.totalfreedom</groupId>
<artifactId>TotalFreedomMod</artifactId> <artifactId>TotalFreedomMod</artifactId>
<version>2020.9</version> <version>2020.11.5</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>

View file

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