Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
hatersgit committed Oct 13, 2023
1 parent b2c0b59 commit d55864a
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions modules/mod-Forge/src/ForgeCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,6 @@
#include <unordered_map>
#include <list>
#include <tuple>
<<<<<<< Updated upstream
=======
#include <random>
#include <boost/lexical_cast.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
>>>>>>> Stashed changes

enum CharacterPointType
{
Expand Down Expand Up @@ -1491,24 +1483,6 @@ class ForgeCache : public DatabaseScript
} while (pointsQuery->NextRow());
}

<<<<<<< Updated upstream
=======
void LoadCharacterResetFlags()
{
QueryResult flags = WorldDatabase.Query("select guid from forge_talent_flagged_reset order by guid asc");
if (!flags)
return;

do
{
Field* flagField = flags->Fetch();
uint32 guid = flagField[0].Get<uint32>();

FlaggedForReset.push_back(guid);
} while (flags->NextRow());
}

>>>>>>> Stashed changes
void AddCharacterClassSpecs()
{
/* QueryResult specsQuery = WorldDatabase.Query("SELECT sl.DisplayName_Lang_enUS as specName, sl.SpellIconID as specIcon, src.ClassMask, src.RaceMask, sl.id FROM acore_world.db_SkillLine_12340 sl LEFT JOIN acore_world.db_SkillRaceClassInfo_12340 src ON src.SkillID = sl.id WHERE sl.CategoryID = 7 AND ClassMask IS NOT NULL AND sl.SpellIconID != 1 AND sl.SpellIconID != 0 order by src.ClassMask asc, sl.DisplayName_Lang_enUS asc");
Expand Down

0 comments on commit d55864a

Please sign in to comment.