diff options
Diffstat (limited to 'server/src/entity/player_portal.rs')
-rw-r--r-- | server/src/entity/player_portal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/entity/player_portal.rs b/server/src/entity/player_portal.rs index 53ba9c39..c0faf767 100644 --- a/server/src/entity/player_portal.rs +++ b/server/src/entity/player_portal.rs @@ -37,7 +37,7 @@ impl Entity for PlayerPortal { .game .players .get_mut(&pid) - .ok_or(anyhow!("player missing"))?; + .ok_or(anyhow!("Player is missing"))?; p.movement.position = self.to; c.packet_out .push_back(PacketC::MovementSync { player: pid }); |