Update for TFM refactor

This commit is contained in:
Telesphoreo 2021-12-07 17:38:35 -06:00
parent f0b518ad5c
commit 8e4ba6f669
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@
<dependency> <dependency>
<groupId>me.totalfreedom</groupId> <groupId>me.totalfreedom</groupId>
<artifactId>TotalFreedomMod</artifactId> <artifactId>TotalFreedomMod</artifactId>
<version>7.0.0</version> <version>7.1.0</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View file

@ -23,6 +23,6 @@ public class TFM {
} }
public boolean isAdmin(Player player) { public boolean isAdmin(Player player) {
return getTFM().al.isAdmin(player); return getTFM().adminList.isAdmin(player);
} }
} }