aboutsummaryrefslogtreecommitdiff
path: root/server/src/entity/book.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-19 00:38:09 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-19 00:38:09 +0200
commit62d918e5feeaf5b3add982a5baaffb201a1f2ece (patch)
treeb14a0fa01f9df692592bf5d16543f43b6eb933d6 /server/src/entity/book.rs
parent6b156bea343a0fd9a043dcfe7113986855a89aab (diff)
downloadhurrycurry-62d918e5feeaf5b3add982a5baaffb201a1f2ece.tar
hurrycurry-62d918e5feeaf5b3add982a5baaffb201a1f2ece.tar.bz2
hurrycurry-62d918e5feeaf5b3add982a5baaffb201a1f2ece.tar.zst
Implement interaction with other players through id instead of tile pos
Diffstat (limited to 'server/src/entity/book.rs')
-rw-r--r--server/src/entity/book.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/entity/book.rs b/server/src/entity/book.rs
index 8daec972..e8456591 100644
--- a/server/src/entity/book.rs
+++ b/server/src/entity/book.rs
@@ -18,7 +18,7 @@
use super::{Entity, EntityContext};
use anyhow::Result;
use hurrycurry_locale::TrError;
-use hurrycurry_protocol::{Menu, PacketC, PlayerID, glam::IVec2};
+use hurrycurry_protocol::{ItemLocation, Menu, PacketC, PlayerID, glam::IVec2};
#[derive(Debug, Clone)]
pub struct Book(pub IVec2);
@@ -27,10 +27,10 @@ impl Entity for Book {
fn interact(
&mut self,
c: EntityContext<'_>,
- pos: Option<IVec2>,
+ pos: Option<ItemLocation>,
_player: PlayerID,
) -> Result<bool, TrError> {
- if pos == Some(self.0) {
+ if pos == Some(ItemLocation::Tile(self.0)) {
if let Some(r) = c.replies {
r.push(PacketC::Menu(Menu::Book(c.serverdata.book.clone())));
}