diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-04 23:41:19 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-04 23:41:19 +0200 |
commit | e33e82e87e1e63aa4bc1e599171f61c5c1fa9f15 (patch) | |
tree | 91ffcf384db6b6905369b2337f2da0b3ff32d588 /pixel-client/src/game.rs | |
parent | b93beb93360257c1a2e1330dfb1a2f184c59b879 (diff) | |
download | hurrycurry-e33e82e87e1e63aa4bc1e599171f61c5c1fa9f15.tar hurrycurry-e33e82e87e1e63aa4bc1e599171f61c5c1fa9f15.tar.bz2 hurrycurry-e33e82e87e1e63aa4bc1e599171f61c5c1fa9f15.tar.zst |
player in progress packet
Diffstat (limited to 'pixel-client/src/game.rs')
-rw-r--r-- | pixel-client/src/game.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pixel-client/src/game.rs b/pixel-client/src/game.rs index 5239a002..fb81ba90 100644 --- a/pixel-client/src/game.rs +++ b/pixel-client/src/game.rs @@ -348,11 +348,13 @@ impl Game { item, position, speed, + player, warn, } => { self.get_item(item).as_mut().unwrap().active = Some(Involvement { position, speed, + player, warn, recipe: RecipeIndex(0), }); |