diff options
author | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:54:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-06-03 20:54:33 +0200 |
commit | e0201e044482b1a577dac7574bb56d44a20bf011 (patch) | |
tree | 5cfc6a224ef349317e9213d4789ce9a2b3f862e8 /pixel-client/src | |
parent | d279baccdbaf37ae4410af1875e98597fe0b5565 (diff) | |
download | hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar.bz2 hurrycurry-e0201e044482b1a577dac7574bb56d44a20bf011.tar.zst |
add tram player class
Diffstat (limited to 'pixel-client/src')
-rw-r--r-- | pixel-client/src/game.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pixel-client/src/game.rs b/pixel-client/src/game.rs index f34920dc..32760364 100644 --- a/pixel-client/src/game.rs +++ b/pixel-client/src/game.rs @@ -498,7 +498,7 @@ impl Player { ctx.draw_world( match self._class { PlayerClass::Chef | PlayerClass::Bot => &ctx.misc_textures.chef, - PlayerClass::Customer => &ctx.misc_textures.customer, + _ => &ctx.misc_textures.customer, } .at(self.movement.position), ); |