Core/DataStores: dropped unused GetIlvlStatMultiplier function

This commit is contained in:
Ovahlord
2024-03-12 10:08:43 +01:00
parent c1666be97c
commit 6dd7965a0d
2 changed files with 0 additions and 10 deletions

View File

@@ -16,7 +16,6 @@
*/
#include "GameTables.h"
#include "ItemTemplate.h"
#include "Timer.h"
#include "Log.h"
#include "StringConvert.h"
@@ -151,9 +150,3 @@ void LoadGameTables(std::string const& dataPath)
TC_LOG_INFO("server.loading", ">> Initialized {} GameTables in {} ms", gameTableCount, GetMSTimeDiffToNow(oldMSTime));
}
template<class T>
float GetIlvlStatMultiplier(T const* row, InventoryType invType)
{
return 1.0f;
}

View File

@@ -382,7 +382,4 @@ inline float GetSpellScalingColumnForClass(GtSpellScalingEntry const* row, int32
return 0.0f;
}
template<class T>
float GetIlvlStatMultiplier(T const* row, InventoryType invType);
#endif // GameTables_h__