1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-06-30 11:47:45 +00:00

Fix compile error

This commit is contained in:
Joshua Goins 2025-06-22 11:24:45 -04:00
parent fd249a2342
commit 33893ff460

View file

@ -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);