Skip to content

Commit

Permalink
fix digging stopping on start (valence-rs#640)
Browse files Browse the repository at this point in the history
For some silly reason when I updated to bevy 0.14 I copy pasted some
code and forgot to change it. This fixes that.
  • Loading branch information
JackCrumpLeys authored Aug 3, 2024
1 parent 2864019 commit 4ba2ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/valence_server/src/action.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 69,7 @@ fn handle_player_action(
client: packet.client,
position: pkt.position,
direction: pkt.direction,
state: DiggingState::Stop,
state: DiggingState::Start,
});
}
PlayerAction::AbortDestroyBlock => {
Expand Down

0 comments on commit 4ba2ef3

Please sign in to comment.