Merge pull request #4 from globetro/bugfix

Fix bug with monster check
This commit is contained in:
GreenComfyTea
2022-01-24 12:25:16 +02:00
committed by GitHub

View File

@@ -392,7 +392,7 @@ function record_health(enemy)
local monster = monster_table[enemy]; local monster = monster_table[enemy];
if not hp_entry then if not monster then
monster = {}; monster = {};
monster_table[enemy] = monster; monster_table[enemy] = monster;