-
-
Notifications
You must be signed in to change notification settings - Fork 77
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
Fix sequence fields #506
Merged
ix0rai
merged 4 commits into
QuiltMC:23w41a
from
supersaiyansubtlety:fix-sequence-fields
Oct 17, 2023
Merged
Fix sequence fields #506
ix0rai
merged 4 commits into
QuiltMC:23w41a
from
supersaiyansubtlety:fix-sequence-fields
Oct 17, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moved contents of client.multiplayer.prediction to client.network, made some method names consistent with `blockUpdate`, renamed PredictiveAction
supersaiyansubtlety
added
t: refactor
proposes a refactor
s: tiny
PRs with less than 50 lines
labels
Oct 4, 2023
ix0rai
added
the
update-base
used to notify github actions that the base branch should be updated
label
Oct 5, 2023
🚀 Target branch has been updated to 23w40a |
github-actions
bot
added
v: snapshot
targets a snapshot version of minecraft
and removed
update-base
used to notify github actions that the base branch should be updated
labels
Oct 5, 2023
ix0rai
approved these changes
Oct 5, 2023
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.
looks great!
IotaBread
approved these changes
Oct 5, 2023
OroArmor
approved these changes
Oct 7, 2023
supersaiyansubtlety
added
final-comment-period
is approved and will soon be merged if no issues are raised
and removed
reviews needed
please review this PR
labels
Oct 7, 2023
ix0rai
added
the
update-base
used to notify github actions that the base branch should be updated
label
Oct 16, 2023
🚀 Target branch has been updated to 23w41a |
github-actions
bot
removed
the
update-base
used to notify github actions that the base branch should be updated
label
Oct 16, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
final-comment-period
is approved and will soon be merged if no issues are raised
s: tiny
PRs with less than 50 lines
t: refactor
proposes a refactor
v: snapshot
targets a snapshot version of minecraft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fixes #470
I've also:
client.multiplayer.prediction
and moved its contents tocleint.network
: there are only two classes, one of which is a functional interface, and both of which are used for networkingBlockUpdate
instead of variations on itPredictiveAction
->PlayerActionPacketFactory
:PredictiveAction
->PlayerAction
: the action itself isn't making a prediction, and the actual packets created are allPlayerAction...
orPlayerInteraction...
PacketFactory
: it's a functional interface whose method creates a packetSome notes:
all of the indexed actions are player actions that
I've chosen "index of player action attempt that could change block state" ->
actionIndex
PlayerAction...
andPlayerInteraction...
packet classes