Posted August 31, 201213 yr I was just wondering, since forge now comes in Universal package, would that mean any mod's made in MCP with forge also work on the minecraft_server.jar? It's confusing cause I thought the class names on the server jar was different.
August 31, 201213 yr The names are no longer different, so as long as the mod is coded correctly it can be installed on the client and server.
August 31, 201213 yr Yup, if a modder isn't stupid and does his mod correctly. Then the same exact code will work on the client and server, which means that he can bundle both in one. Case an point Forge, we edit a bunch of base classes, yet we're still able to make a universal distro. There is no valid reason a modder shouldn't be able to. And if he doesn't hes just making more work for himself I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
September 1, 201213 yr Author Just another question: I was looking at CPW Iron Chest mod source, and noticed that he placed CommonProxy as his serverSide proxy. Does that mean that the CommonProxy could be called on the Client as well?
September 1, 201213 yr If you notice, his client proxy extends CommonProxy. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
September 1, 201213 yr The client has to extend the other, or the field has to be a shared supertype such as an interface. The sided proxy pretty much enforces this. The practice that has developed, and its a good one is to have the server as a "super" and client as a "sub"..
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.