summaryrefslogtreecommitdiff
path: root/src/npc/forestMinish.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/npc/forestMinish.c')
-rw-r--r--src/npc/forestMinish.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/npc/forestMinish.c b/src/npc/forestMinish.c
index 7c602e2a..8a1013f4 100644
--- a/src/npc/forestMinish.c
+++ b/src/npc/forestMinish.c
@@ -4,13 +4,22 @@
*
* @brief Forest Minish NPC
*/
-#include "functions.h"
#include "item.h"
#include "kinstone.h"
#include "npc.h"
#include "object.h"
+#include "asm.h"
+#include "common.h"
+#include "flags.h"
+#include "effects.h"
+#include "physics.h"
+#include "player.h"
#include "playeritem.h"
+#include "save.h"
+#include "message.h"
+#include "script.h"
#include "structures.h"
+
typedef struct {
/*0x00*/ Entity base;
/*0x68*/ u8 fusionOffer;
@@ -715,7 +724,7 @@ void sub_08060318(void) {
for (i = 2; i >= 0; i--) {
ent = FindEntityByID(PLAYER_ITEM, PLAYER_ITEM_BOMB, 2);
if (ent != NULL) {
- CreateDust(ent);
+ CreateDeathFx(ent);
DeleteEntity(ent);
}
}