Misc fixes
This commit is contained in:
@@ -3371,7 +3371,13 @@ namespace Game.Entities
|
||||
WorldCfg.RatePowerArcaneCharges,
|
||||
WorldCfg.RatePowerFury,
|
||||
WorldCfg.RatePowerPain,
|
||||
0 // todo add config for Essence power
|
||||
0, // todo add config for Essence power
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
};
|
||||
|
||||
if (RatesForPower[(int)power] != 0)
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace Game.Entities
|
||||
|
||||
public void InitTaxiNodesForLevel(Race race, Class chrClass, uint level)
|
||||
{
|
||||
m_taximask = new byte[((CliDB.TaxiNodesStorage.GetNumRows() - 1) / (8 * 64) + 1) * 8];
|
||||
m_taximask = new byte[((CliDB.TaxiNodesStorage.GetNumRows() - 1) / (1 * 64) + 1) * 8];
|
||||
|
||||
// class specific initial known nodes
|
||||
if (chrClass == Class.Deathknight)
|
||||
@@ -93,7 +93,7 @@ namespace Game.Entities
|
||||
|
||||
public void LoadTaxiMask(string data)
|
||||
{
|
||||
m_taximask = new byte[((CliDB.TaxiNodesStorage.GetNumRows() - 1) / (8 * 64) + 1) * 8];
|
||||
m_taximask = new byte[((CliDB.TaxiNodesStorage.GetNumRows() - 1) / (1 * 64) + 1) * 8];
|
||||
|
||||
var split = new StringArray(data, ' ');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user