You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//This client wrote somewhere they are not allowed. This is critical
1006
+
//We can't just skip this field. Because we don't actually know how to dummy read
1007
+
//That is, we don't know how many bytes to skip. Because the interface doesn't have a
1008
+
//Read that gives us the value. Only a Read that applies the value straight away
1009
+
//A dummy read COULD be added to the interface for this situation, but it's just being too nice.
1010
+
//This is after all a developer fault. A critical error should be fine.
1011
+
// - TwoTen
1012
+
if(LogHelper.CurrentLogLevel<=LogLevel.Error)LogHelper.LogError("Client wrote to NetworkedVar without permission. No more variables can be read. This is critical");
//This client wrote somewhere they are not allowed. This is critical
1030
+
//We can't just skip this field. Because we don't actually know how to dummy read
1031
+
//That is, we don't know how many bytes to skip. Because the interface doesn't have a
1032
+
//Read that gives us the value. Only a Read that applies the value straight away
1033
+
//A dummy read COULD be added to the interface for this situation, but it's just being too nice.
1034
+
//This is after all a developer fault. A critical error should be fine.
1035
+
// - TwoTen
1036
+
if(LogHelper.CurrentLogLevel<=LogLevel.Error)LogHelper.LogError("Client wrote to NetworkedVar without permission. No more variables can be read. This is critical");
0 commit comments