Jump to content

[1.15.2] When to check world.isRemote?


lisilew

Recommended Posts

I am not sure when is checking sides appropriate or not.

When I face problems like methods being called twice or some data from entity being not available, putting !world.isRemote usually solves them.

So I have quite a lot of !world.isRemote checks and I felt like I was doing something wrong.

Quote

Use this check whenever you need to determine if game logic and other mechanics should be run. For example, if you want to damage the player every time they click your block, or have your machine process dirt into diamonds, you should only do so after ensuring world.isRemote is false. Applying game logic to the logical client can cause desynchronization (ghost entities, desynchronized stats, etc.) in the lightest case, and crashes in the worst case.

This is what the documentation says and I am confused about game logic.

What exactly is game logic and how do I determine if my operation is game logic and thus should run in logical server?

And what kinds of operations should run in logical client?

Link to comment
Share on other sites

56 minutes ago, lisilew said:

What exactly is game logic

Everything. (Almost)

 

Block dropping its loot? Game logic.

Swords damaging zombies? Game logic.

Crafting recipes? Game logic.

Advancements? Game logic.

Entity AI? Game logic.

Placing blocks? Game logic.

Enchanting items? Game logic.

World generation? Game logic.

 

The "things that aren't game logic" are:

User input

Graphical display

Sounds

Network communication/synchronization

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.