Core/Misc: Misc fixes
This commit is contained in:
@@ -65,7 +65,7 @@ namespace Framework.Constants
|
|||||||
public const int MaxArtifactTier = 1;
|
public const int MaxArtifactTier = 1;
|
||||||
|
|
||||||
public const int MaxHonorLevel = 500;
|
public const int MaxHonorLevel = 500;
|
||||||
public const byte LevelMinHonor = 60;
|
public const byte LevelMinHonor = 20;
|
||||||
public const uint SpellPvpRulesEnabled = 134735;
|
public const uint SpellPvpRulesEnabled = 134735;
|
||||||
|
|
||||||
//Azerite
|
//Azerite
|
||||||
|
|||||||
@@ -2640,10 +2640,7 @@ namespace Game.Entities
|
|||||||
|
|
||||||
var status = m_QuestStatus.LookupByKey(quest.Id);
|
var status = m_QuestStatus.LookupByKey(quest.Id);
|
||||||
if (status == null)
|
if (status == null)
|
||||||
{
|
|
||||||
Log.outError(LogFilter.Player, "GetQuestObjectiveData: player {0} ({1}) doesn't have quest status data for quest {2}", GetName(), GetGUID().ToString(), quest.Id);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
if (storageIndex >= status.ObjectiveData.Length)
|
if (storageIndex >= status.ObjectiveData.Length)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1237,6 +1237,7 @@ namespace Game.Entities
|
|||||||
case ShapeShiftForm.BearForm:
|
case ShapeShiftForm.BearForm:
|
||||||
useRandom = HasAura(107059);
|
useRandom = HasAura(107059);
|
||||||
break; // Glyph of the Ursol Chameleon
|
break; // Glyph of the Ursol Chameleon
|
||||||
|
case ShapeShiftForm.FlightFormEpic:
|
||||||
case ShapeShiftForm.FlightForm:
|
case ShapeShiftForm.FlightForm:
|
||||||
useRandom = HasAura(344342);
|
useRandom = HasAura(344342);
|
||||||
break; // Glyph of the Aerial Chameleon
|
break; // Glyph of the Aerial Chameleon
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ namespace Game.Networking
|
|||||||
public class RASocket : ISocket
|
public class RASocket : ISocket
|
||||||
{
|
{
|
||||||
Socket _socket;
|
Socket _socket;
|
||||||
bool _closed;
|
|
||||||
IPAddress _remoteAddress;
|
IPAddress _remoteAddress;
|
||||||
byte[] _receiveBuffer;
|
byte[] _receiveBuffer;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user