Fixed HAS_VAULT

This commit is contained in:
Auxilor
2021-08-04 14:36:24 +01:00
parent 2669569e81
commit fd96b0d2cf

View File

@@ -34,7 +34,7 @@ public class Prerequisite {
* Requires the server to be running an implementation of paper.
*/
public static final Prerequisite HAS_VAULT = new Prerequisite(
() -> ClassUtils.exists("net.milkbowl.vault.economy.Economy;"),
() -> ClassUtils.exists("net.milkbowl.vault.economy.Economy"),
"Requires server to have vault"
);