Posted July 20, 201312 yr Hello everyone, I really need a way to detect if the client is playing singleplayer (so when there's an integrated server) or if it is playing on multiplayer (on a remote, dedicated server). ClientProxy and ServerProxy don't allow that, as ServerProxy isn't called when we are playing on singleplayer. Also World instance can't help me in this, as it gets the SIDE only (client-side or server-side). I can't see any solution, please give me some tips, thanks guys!
July 20, 201312 yr I use my proxies for that. CommonProxy: public boolean isSinglePlayer() { return false; } ClientProxy: @Override public boolean isSinglePlayer() { return Minecraft.getMinecraft().isSingleplayer(); } Works very well so far.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.