Skip to content

Commit 1408f2f

Browse files
committedDec 28, 2019
up
1 parent ffeec4c commit 1408f2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎KBEngine.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public enum CLIENT_TYPE
8686

8787
// 服务端与客户端的版本号以及协议MD5
8888
public string serverVersion = "";
89-
public string clientVersion = "1.1.6";
89+
public string clientVersion = "1.3.13";
9090
public string serverScriptVersion = "";
9191
public string clientScriptVersion = "0.1.0";
9292
public string serverProtocolMD5 = "";
@@ -2333,8 +2333,8 @@ public void Client_onUpdateData_yr(MemoryStream stream)
23332333
float y = stream.readFloat();
23342334
float r = stream.readFloat();
23352335

2336-
_updateVolatileData(eid, KBEDATATYPE_BASE.KBE_FLT_MAX, KBEDATATYPE_BASE.KBE_FLT_MAX, KBEDATATYPE_BASE.KBE_FLT_MAX, y, KBEDATATYPE_BASE.KBE_FLT_MAX, r, -1);
2337-
}
2336+
_updateVolatileData(eid, KBEDATATYPE_BASE.KBE_FLT_MAX, KBEDATATYPE_BASE.KBE_FLT_MAX, KBEDATATYPE_BASE.KBE_FLT_MAX, y, KBEDATATYPE_BASE.KBE_FLT_MAX, r, -1, false);
2337+
}
23382338

23392339
public void Client_onUpdateData_pr(MemoryStream stream)
23402340
{

0 commit comments

Comments
 (0)
Please sign in to comment.