Compare commits
No commits in common. "d91d58b71daf34d8ea7750dd5036a5f844151dba" and "bcf31c729620416a4e84f58db1f9299fe865d0b3" have entirely different histories.
d91d58b71d
...
bcf31c7296
@ -519,13 +519,13 @@ namespace skyscraper5.Skyscraper.IO.RemoteStreamReader
|
||||
TcpStream.Flush();
|
||||
|
||||
RemoteStreamReaderConstants result = (RemoteStreamReaderConstants)TcpStream.ReadUInt32BE();
|
||||
pRFLevel = NetworkStreamExtensions.ReadDoubleBE(TcpStream);
|
||||
|
||||
switch (result)
|
||||
{
|
||||
case RemoteStreamReaderConstants.COMMAND_SUCCESSFUL:
|
||||
pRFLevel = TcpStream.ReadDoubleBE();
|
||||
return true;
|
||||
case RemoteStreamReaderConstants.COMMAND_FAILED:
|
||||
pRFLevel = TcpStream.ReadDoubleBE();
|
||||
return false;
|
||||
default:
|
||||
throw new NotImplementedException(result.ToString());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user