A Fabric mod for Geyser servers that detects players joining from one platform or another and adds tags and executes players based on one's platforms. https://modrinth.com/mod/bedrock-detector
This repository has been archived on 2026-09-26. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-26 14:24:20 +02:00
docs/changelog Better icon + Floodgate required 2025-10-21 09:25:53 +02:00
gradle/wrapper first commit 2025-10-20 18:56:41 +02:00
src/main Code formatting 2025-11-01 10:03:09 +01:00
.gitattributes first commit 2025-10-20 18:56:41 +02:00
.gitignore Code formatting 2025-11-01 10:03:09 +01:00
build.gradle Better icon + Floodgate required 2025-10-21 09:25:53 +02:00
gradle.properties first commit 2025-10-20 18:56:41 +02:00
gradlew first commit 2025-10-20 18:56:41 +02:00
gradlew.bat first commit 2025-10-20 18:56:41 +02:00
LICENSE Gud 2025-10-21 09:03:47 +02:00
README.md Better icon + Floodgate required 2025-10-21 09:25:53 +02:00
settings.gradle first commit 2025-10-20 18:56:41 +02:00

Bedrock Detector

A server-side mod for the Fabric mod loader that detects whether people are on Bedrock or not by using the Floodgate API. Based on their platform, the mod will attribute command tags to the player and execute custom commands as a player.

Configuration

After having installed the mod, launch the server and a config in the config folder by the name of bedrockdetector.json should appear. Here's an example of the config file:

{
  "java": {
    "tags": [
      "java"
    ],
    "commands": [
      "combatedit profile set combatedit:vanilla"
    ]
  },
  "bedrock": {
    "tags": [
      "bedrock"
    ],
    "commands": [
      "combatedit profile set combatedit:1_8_combat"
    ]
  }
}

Note: this was used in conjuction with the CombatEdit mod as an example to show off how you can change the combat method by swapping editions of the game.