Refactor/rework

This commit is contained in:
Len
2022-08-22 00:21:36 +02:00
parent 658837814a
commit 3aa8414c5b
17 changed files with 885 additions and 12 deletions
@@ -0,0 +1,11 @@
package com.alttd.playershops.hook;
import org.bukkit.Location;
import org.bukkit.entity.Player;
public class WorldGuardHook {
public static boolean canUseShopInRegion(Player player, Location location) {
return true;
}
}