Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
- FishNetworking 1.3.1 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
TiToMoskito committed Feb 19, 2022
1 parent 84a3098 commit 59ca67f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@
- Fixed incorrect statistic calculations
1.4.0
- Removed obsolete methods
- FishNetworking 1.3.0 Support
- FishNetworking 1.3.0 Support
1.4.1
- FishNetworking 1.3.1 Support
8 changes: 4 additions & 4 deletions FishyLatency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ public override void IterateOutgoing(bool server)
/// Handles a ClientReceivedDataArgs.
/// </summary>
/// <param name="receivedDataArgs"></param>
public override void HandleClientReceivedData(ClientReceivedDataArgs receivedDataArgs)
public override void HandleClientReceivedDataArgs(ClientReceivedDataArgs receivedDataArgs)
{
m_transport.HandleClientReceivedData(receivedDataArgs);
m_transport.HandleClientReceivedDataArgs(receivedDataArgs);
}
/// <summary>
/// Called when server receives data.
Expand All @@ -233,9 +233,9 @@ public override void HandleClientReceivedData(ClientReceivedDataArgs receivedDat
/// Handles a ClientReceivedDataArgs.
/// </summary>
/// <param name="receivedDataArgs"></param>
public override void HandleServerReceivedData(ServerReceivedDataArgs receivedDataArgs)
public override void HandleServerReceivedDataArgs(ServerReceivedDataArgs receivedDataArgs)
{
m_transport.HandleServerReceivedData(receivedDataArgs);
m_transport.HandleServerReceivedDataArgs(receivedDataArgs);
}
#endregion

Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1

0 comments on commit 59ca67f

Please sign in to comment.