-
-
Notifications
You must be signed in to change notification settings - Fork 703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed Villager Position when Sleeping #933
Fixed Villager Position when Sleeping #933
Conversation
All of these changes should be moved to |
It may be worth testing if there is a Java edge case where other entities sleep. Otherwise, I agree. |
I don't think any other entity have the ability to sleep. I will move the changes to the VillagerEntity file |
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since RTM went over whitespacing this is all I've got besides the potential VillagerEntity move. Nice job for your first PR!
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
I believe that is all of the requested changes |
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/Entity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Outdated
Show resolved
Hide resolved
connector/src/main/java/org/geysermc/connector/entity/living/merchant/VillagerEntity.java
Show resolved
Hide resolved
Manually resolved some of the spacing and indentation problems. Thanks for your contribution! |
This edits the position of a villager with the tag SLEEPING and will set it to the direction of the bed
This is my first Pull Request and I am also new to Java so forgive me for any mistakes