From b4d83b12f7eb95ad87768643a42f822e0c849508 Mon Sep 17 00:00:00 2001 From: Alula Date: Sat, 19 Dec 2020 02:36:27 +0100 Subject: [PATCH] build fix for monster x --- src/npc/boss/monster_x.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/npc/boss/monster_x.rs b/src/npc/boss/monster_x.rs index 648e80b..1415814 100644 --- a/src/npc/boss/monster_x.rs +++ b/src/npc/boss/monster_x.rs @@ -447,7 +447,7 @@ impl BossNPC { } for npc_cell in npc_map.values() { - let npc = npc_cell.borrow_mut(); + let mut npc = npc_cell.borrow_mut(); if npc.cond.alive() && npc.npc_type == 158 { npc.cond.set_alive(false); }