fixed default fishing spell ID

This commit is contained in:
Flerp 2025-11-01 18:07:10 -07:00
parent a943ae6a59
commit 353dcac81f
2 changed files with 2 additions and 2 deletions

View File

@ -11,4 +11,4 @@ AutoFish.ServerAutoLoot = 1
# Automatically Recast the fishing line
AutoFish.AutoRecast = 1
AutoFish.RecastDelayMs = 500
AutoFish.RecastSpell = 131474
AutoFish.RecastSpell = 18248

View File

@ -118,7 +118,7 @@ public:
sTickMs = sConfigMgr->GetOption<uint32>("AutoFish.TickMs", 200u);
sScanRange = sConfigMgr->GetOption<float>("AutoFish.ScanRange", 30.0f);
sRecastDelayMs = sConfigMgr->GetOption<uint32>("AutoFish.RecastDelayMs", 500u);
sRecastSpell = sConfigMgr->GetOption<uint32>("AutoFish.RecastSpell", 131474u);
sRecastSpell = sConfigMgr->GetOption<uint32>("AutoFish.RecastSpell", 18248u);
sBobberEntries = ParseEntryList(sConfigMgr->GetOption<std::string>("AutoFish.BobberEntries", "35591"));
}