1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-12-12 07:35:08 +00:00

Compare commits

...

2 commits

Author SHA1 Message Date
Alula 94cb7039a8
fix font sizings 2020-12-19 02:37:55 +01:00
Alula b4d83b12f7
build fix for monster x 2020-12-19 02:36:27 +01:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 90 KiB

View file

@ -447,7 +447,7 @@ impl BossNPC {
} }
for npc_cell in npc_map.values() { 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 { if npc.cond.alive() && npc.npc_type == 158 {
npc.cond.set_alive(false); npc.cond.set_alive(false);
} }