From 33893ff460f538c5a459fab2b9af4cff727de78d Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 22 Jun 2025 11:24:45 -0400 Subject: [PATCH] Fix compile error --- src/world/lua.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/lua.rs b/src/world/lua.rs index 522a712..0c3d563 100644 --- a/src/world/lua.rs +++ b/src/world/lua.rs @@ -136,7 +136,7 @@ impl LuaPlayer { fn unlock_action(&mut self, id: u32) { let op_code = ServerZoneIpcType::ActorControlSelf; let data = ServerZoneIpcData::ActorControlSelf(ActorControlSelf { - category: ActorControlCategory::ToggleActionUnlock { id, unlocked: true }, + category: ActorControlCategory::ToggleUnlock { id, unlocked: true }, }); self.create_segment_self(op_code, data);