diff options
Diffstat (limited to 'server/src/entity/conveyor.rs')
-rw-r--r-- | server/src/entity/conveyor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/entity/conveyor.rs b/server/src/entity/conveyor.rs index f7f091c7..5602e082 100644 --- a/server/src/entity/conveyor.rs +++ b/server/src/entity/conveyor.rs @@ -15,7 +15,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -use super::{EntityContext, EntityT}; +use super::{EntityContext, Entity}; use crate::server::interact_effect; use anyhow::{anyhow, Result}; use hurrycurry_protocol::{glam::IVec2, ItemIndex, ItemLocation}; @@ -30,7 +30,7 @@ pub struct Conveyor { pub(super) max_cooldown: f32, } -impl EntityT for Conveyor { +impl Entity for Conveyor { fn tick(&mut self, c: EntityContext) -> Result<()> { let from = c .game |