From 32d0e9d40aef79b1c8c0cff29ea9537f4e9e5c42 Mon Sep 17 00:00:00 2001
From: EyesOfAHawk <blackoutro2006@gmail.com>
Date: Sat, 11 Aug 2018 01:32:09 +1200
Subject: Supresses warning in skill_attack when MAGIC_REFLECTION_TYPE is 0.

---
 src/map/skill.c | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'src')

diff --git a/src/map/skill.c b/src/map/skill.c
index a4ebff9f1..7d47cfcb6 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -2745,7 +2745,11 @@ static int skill_magic_reflect(struct block_list *src, struct block_list *bl, in
 static int skill_attack(int attack_type, struct block_list *src, struct block_list *dsrc, struct block_list *bl, uint16 skill_id, uint16 skill_lv, int64 tick, int flag)
 {
 	struct Damage dmg;
+#if MAGIC_REFLECTION_TYPE
 	struct status_data *sstatus, *tstatus;
+#else
+	struct status_data *tstatus;
+#endif
 	struct status_change *sc;
 	struct map_session_data *sd, *tsd;
 	int type;
@@ -2780,7 +2784,9 @@ static int skill_attack(int attack_type, struct block_list *src, struct block_li
 			)
 		return 0;
 
+#if MAGIC_REFLECTION_TYPE
 	sstatus = status->get_status_data(src);
+#endif
 	tstatus = status->get_status_data(bl);
 	sc = status->get_sc(bl);
 	if (sc && !sc->count) sc = NULL; //Don't need it.
-- 
cgit v1.2.3-70-g09d2