From 7f080871c8b3bbe7a79027194633201c63422ee1 Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Thu, 18 Jun 2026 02:30:09 -0700 Subject: [PATCH] Fix compiler errors after skill split (#10043) --- src/map/skills/archer/soundblend.cpp | 1 + src/map/skills/gunslinger/chainaction.cpp | 2 ++ src/map/skills/gunslinger/quickdrawshot.cpp | 1 + src/map/skills/mage/coldbolt.cpp | 1 + src/map/skills/mage/firebolt.cpp | 1 + src/map/skills/mage/firepillar.cpp | 1 + src/map/skills/mage/lightningbolt.cpp | 1 + src/map/skills/mage/psychicwave.cpp | 1 + src/map/skills/merchant/axestomp.cpp | 1 + src/map/skills/thief/doubleattack.cpp | 2 ++ src/map/skills/thief/fatalmenace.cpp | 1 + src/map/skills/thief/mug.cpp | 1 + 12 files changed, 14 insertions(+) diff --git a/src/map/skills/archer/soundblend.cpp b/src/map/skills/archer/soundblend.cpp index 1022248526a..053a03a4421 100644 --- a/src/map/skills/archer/soundblend.cpp +++ b/src/map/skills/archer/soundblend.cpp @@ -6,6 +6,7 @@ #include #include "map/clif.hpp" +#include "map/pc.hpp" #include "map/status.hpp" SkillSoundBlend::SkillSoundBlend() : SkillImpl(TR_SOUNDBLEND) { diff --git a/src/map/skills/gunslinger/chainaction.cpp b/src/map/skills/gunslinger/chainaction.cpp index 4d9f3f7275e..c0e84886b86 100644 --- a/src/map/skills/gunslinger/chainaction.cpp +++ b/src/map/skills/gunslinger/chainaction.cpp @@ -3,6 +3,8 @@ #include "chainaction.hpp" +#include "map/clif.hpp" + SkillChainAction::SkillChainAction() : WeaponSkillImpl(GS_CHAINACTION) { } diff --git a/src/map/skills/gunslinger/quickdrawshot.cpp b/src/map/skills/gunslinger/quickdrawshot.cpp index 16db1941389..3bf0c31343f 100644 --- a/src/map/skills/gunslinger/quickdrawshot.cpp +++ b/src/map/skills/gunslinger/quickdrawshot.cpp @@ -4,6 +4,7 @@ #include "quickdrawshot.hpp" #include "map/map.hpp" +#include "map/pc.hpp" #include "map/status.hpp" SkillQuickDrawShot::SkillQuickDrawShot() : SkillImpl(RL_QD_SHOT) { diff --git a/src/map/skills/mage/coldbolt.cpp b/src/map/skills/mage/coldbolt.cpp index 1d097d60960..2db15ba367c 100644 --- a/src/map/skills/mage/coldbolt.cpp +++ b/src/map/skills/mage/coldbolt.cpp @@ -3,6 +3,7 @@ #include "coldbolt.hpp" +#include "map/clif.hpp" #include "map/status.hpp" SkillColdBolt::SkillColdBolt() : SkillImpl(MG_COLDBOLT) { diff --git a/src/map/skills/mage/firebolt.cpp b/src/map/skills/mage/firebolt.cpp index 0262caae5e2..2798dcba98d 100644 --- a/src/map/skills/mage/firebolt.cpp +++ b/src/map/skills/mage/firebolt.cpp @@ -3,6 +3,7 @@ #include "firebolt.hpp" +#include "map/clif.hpp" #include "map/status.hpp" SkillFireBolt::SkillFireBolt() : SkillImpl(MG_FIREBOLT) { diff --git a/src/map/skills/mage/firepillar.cpp b/src/map/skills/mage/firepillar.cpp index 910bf3977c5..78da91479d6 100644 --- a/src/map/skills/mage/firepillar.cpp +++ b/src/map/skills/mage/firepillar.cpp @@ -3,6 +3,7 @@ #include "firepillar.hpp" +#include "map/pc.hpp" #include "map/unit.hpp" SkillFirePillar::SkillFirePillar() : SkillImpl(WZ_FIREPILLAR) { diff --git a/src/map/skills/mage/lightningbolt.cpp b/src/map/skills/mage/lightningbolt.cpp index 70bf726be74..99ef48111dc 100644 --- a/src/map/skills/mage/lightningbolt.cpp +++ b/src/map/skills/mage/lightningbolt.cpp @@ -3,6 +3,7 @@ #include "lightningbolt.hpp" +#include "map/clif.hpp" #include "map/status.hpp" SkillLightningBolt::SkillLightningBolt() : SkillImpl(MG_LIGHTNINGBOLT) { diff --git a/src/map/skills/mage/psychicwave.cpp b/src/map/skills/mage/psychicwave.cpp index 76d6d78aee9..eb131cf11f2 100644 --- a/src/map/skills/mage/psychicwave.cpp +++ b/src/map/skills/mage/psychicwave.cpp @@ -5,6 +5,7 @@ #include +#include "map/pc.hpp" #include "map/status.hpp" SkillPsychicWave::SkillPsychicWave() : SkillImpl(SO_PSYCHIC_WAVE) { diff --git a/src/map/skills/merchant/axestomp.cpp b/src/map/skills/merchant/axestomp.cpp index b6ff7ef6619..0c8cb9f5c48 100644 --- a/src/map/skills/merchant/axestomp.cpp +++ b/src/map/skills/merchant/axestomp.cpp @@ -6,6 +6,7 @@ #include #include "map/clif.hpp" +#include "map/pc.hpp" #include "map/skill.hpp" #include "map/status.hpp" diff --git a/src/map/skills/thief/doubleattack.cpp b/src/map/skills/thief/doubleattack.cpp index 5e7a310078a..4919f7bc23b 100644 --- a/src/map/skills/thief/doubleattack.cpp +++ b/src/map/skills/thief/doubleattack.cpp @@ -3,6 +3,8 @@ #include "doubleattack.hpp" +#include "map/clif.hpp" + SkillDoubleAttack::SkillDoubleAttack() : WeaponSkillImpl(TF_DOUBLE) { } diff --git a/src/map/skills/thief/fatalmenace.cpp b/src/map/skills/thief/fatalmenace.cpp index 23e1c4b8ef0..efb219abc64 100644 --- a/src/map/skills/thief/fatalmenace.cpp +++ b/src/map/skills/thief/fatalmenace.cpp @@ -7,6 +7,7 @@ #include "map/clif.hpp" #include "map/map.hpp" +#include "map/pc.hpp" #include "map/status.hpp" SkillFatalMenace::SkillFatalMenace() : WeaponSkillImpl(SC_FATALMENACE) { diff --git a/src/map/skills/thief/mug.cpp b/src/map/skills/thief/mug.cpp index f27d3b07dd9..c886d02c0a5 100644 --- a/src/map/skills/thief/mug.cpp +++ b/src/map/skills/thief/mug.cpp @@ -7,6 +7,7 @@ #include "map/battle.hpp" #include "map/clif.hpp" +#include "map/log.hpp" #include "map/mob.hpp" #include "map/pc.hpp"