Revert "Fixed some (many) "{ get; set; }""

This reverts commit 8393349316.
This commit is contained in:
Fabian
2017-11-05 22:26:25 +01:00
parent 8ed446ae7a
commit facab2dce6
77 changed files with 3697 additions and 3704 deletions
+14 -14
View File
@@ -29,7 +29,7 @@ namespace Game.Network.Packets
TargetGUID = _worldPacket.ReadPackedGuid();
}
public ObjectGuid TargetGUID { get; set; }
public ObjectGuid TargetGUID;
}
public class CanDuelResult : ServerPacket
@@ -43,8 +43,8 @@ namespace Game.Network.Packets
_worldPacket.FlushBits();
}
public ObjectGuid TargetGUID { get; set; }
public bool Result { get; set; }
public ObjectGuid TargetGUID;
public bool Result;
}
public class DuelComplete : ServerPacket
@@ -57,7 +57,7 @@ namespace Game.Network.Packets
_worldPacket.FlushBits();
}
public bool Started { get; set; }
public bool Started;
}
public class DuelCountdown : ServerPacket
@@ -100,9 +100,9 @@ namespace Game.Network.Packets
_worldPacket.WritePackedGuid(RequestedByWowAccount);
}
public ObjectGuid ArbiterGUID { get; set; }
public ObjectGuid RequestedByGUID { get; set; }
public ObjectGuid RequestedByWowAccount { get; set; }
public ObjectGuid ArbiterGUID;
public ObjectGuid RequestedByGUID;
public ObjectGuid RequestedByWowAccount;
}
public class DuelResponse : ClientPacket
@@ -115,8 +115,8 @@ namespace Game.Network.Packets
Accepted = _worldPacket.HasBit();
}
public ObjectGuid ArbiterGUID { get; set; }
public bool Accepted { get; set; }
public ObjectGuid ArbiterGUID;
public bool Accepted;
}
public class DuelWinner : ServerPacket
@@ -134,10 +134,10 @@ namespace Game.Network.Packets
_worldPacket.WriteString(WinnerName);
}
public string BeatenName { get; set; }
public string WinnerName { get; set; }
public uint BeatenVirtualRealmAddress { get; set; }
public uint WinnerVirtualRealmAddress { get; set; }
public bool Fled { get; set; }
public string BeatenName;
public string WinnerName;
public uint BeatenVirtualRealmAddress;
public uint WinnerVirtualRealmAddress;
public bool Fled;
}
}