mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Merge pull request #15219 from SeTM/patch-2
Core/Spells: Fix some taxi paths not being available to players. This allows players to use the taxi paths used already by spells 29376, 29377, 31752, 34578, 47851. Fixes https://github.com/TrinityCore/TrinityCore/issues/12832
This commit is contained in:
@@ -600,7 +600,7 @@ void LoadDBCStores(const std::string& dataPath)
|
||||
for (TaxiPathSetForSource::const_iterator dest_i = src_i->second.begin(); dest_i != src_i->second.end(); ++dest_i)
|
||||
{
|
||||
// not spell path
|
||||
if (spellPaths.find(dest_i->second.ID) == spellPaths.end())
|
||||
if (dest_i->second.price || spellPaths.find(dest_i->second.ID) == spellPaths.end())
|
||||
{
|
||||
ok = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user