We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e6e22 commit c5a2820Copy full SHA for c5a2820
1 file changed
paper/src/main/java/re/imc/geysermodelengine/util/BedrockUtils.java
@@ -9,7 +9,7 @@ public class BedrockUtils {
9
private static final FloodgateApi floodgateAPIHook = FloodgateAPIHook.getAPI();
10
11
public static boolean isBedrockPlayer(Player player) {
12
- if (floodgateAPIHook != null) return floodgateAPIHook.isFloodgateId(player.getUniqueId());
+ if (floodgateAPIHook != null) return floodgateAPIHook.isFloodgatePlayer(player.getUniqueId());
13
String clientBrand = player.getClientBrandName();
14
if (clientBrand == null) return false;
15
return clientBrand.contains("Geyser");
0 commit comments