You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My current setup is using floodgate only on the fabric server and geyser and floodgate on the velocity proxy, and when i do this the bedrock forms dont work
i believe that this is the code that causes this issue
public static void openGui(ServerPlayerEntity player, @Nullable WaystoneRecord record) {
if (FabricLoader.getInstance().isModLoaded("geyser-fabric")) {
if (GeyserViewerGui.openGuiIfBedrock(player, record)) {
return;
}
}
JavaViewerGui gui = new JavaViewerGui(player, record);
gui.updateMenu();
gui.open();
}
}
i dont know java but when i looked throught the sourcecode i found this section of code , i beleive the mod checks for the geyser mod on the server , but for me i only have the floodgate mod on the main server. maybe you could check for floodgate instead of geyser or check for the floodgate prefix which is usually "." and then request the form to open
sorry if this issue was long but i thought that i would help u out with troubleshooting and also sorry for my bad english
The text was updated successfully, but these errors were encountered:
My current setup is using floodgate only on the fabric server and geyser and floodgate on the velocity proxy, and when i do this the bedrock forms dont work
i believe that this is the code that causes this issue
i dont know java but when i looked throught the sourcecode i found this section of code , i beleive the mod checks for the geyser mod on the server , but for me i only have the floodgate mod on the main server. maybe you could check for floodgate instead of geyser or check for the floodgate prefix which is usually "." and then request the form to open
sorry if this issue was long but i thought that i would help u out with troubleshooting and also sorry for my bad english
The text was updated successfully, but these errors were encountered: