Revert "Fixed some (many) "{ get; set; }""
This reverts commit 8393349316.
This commit is contained in:
@@ -29,7 +29,7 @@ namespace Game.Network.Packets
|
||||
Granter = _worldPacket.ReadPackedGuid();
|
||||
}
|
||||
|
||||
public ObjectGuid Granter { get; set; }
|
||||
public ObjectGuid Granter;
|
||||
}
|
||||
|
||||
public class GrantLevel : ClientPacket
|
||||
@@ -41,7 +41,7 @@ namespace Game.Network.Packets
|
||||
Target = _worldPacket.ReadPackedGuid();
|
||||
}
|
||||
|
||||
public ObjectGuid Target { get; set; }
|
||||
public ObjectGuid Target;
|
||||
}
|
||||
|
||||
public class ProposeLevelGrant : ServerPacket
|
||||
@@ -53,7 +53,7 @@ namespace Game.Network.Packets
|
||||
_worldPacket.WritePackedGuid(Sender);
|
||||
}
|
||||
|
||||
public ObjectGuid Sender { get; set; }
|
||||
public ObjectGuid Sender;
|
||||
}
|
||||
|
||||
public class ReferAFriendFailure : ServerPacket
|
||||
@@ -69,7 +69,7 @@ namespace Game.Network.Packets
|
||||
_worldPacket.WriteString(Str);
|
||||
}
|
||||
|
||||
public string Str { get; set; }
|
||||
public ReferAFriendError Reason { get; set; }
|
||||
public string Str;
|
||||
public ReferAFriendError Reason;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user