File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Plugins/kbengine_ue4_plugins/Source/KBEnginePlugins/Engine Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ void KBEngineApp::reset()
235235 serverdatas_.Empty ();
236236
237237 serverVersion_ = TEXT (" " );
238- clientVersion_ = TEXT (" 2.5.2 " );
238+ clientVersion_ = TEXT (" 2.5.4 " );
239239 serverScriptVersion_ = TEXT (" " );
240240 clientScriptVersion_ = TEXT (" 0.1.0" );
241241
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ void TestBase::createFromStream(MemoryStream& stream)
2121
2222void TestBase::onGetBase ()
2323{
24+ ownerID = pOwner->id ();
25+
2426 if (pBaseEntityCall)
2527 delete pBaseEntityCall;
2628
@@ -29,6 +31,8 @@ void TestBase::onGetBase()
2931
3032void TestBase::onGetCell ()
3133{
34+ ownerID = pOwner->id ();
35+
3236 if (pCellEntityCall)
3337 delete pCellEntityCall;
3438
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ void TestNoBaseBase::createFromStream(MemoryStream& stream)
2121
2222void TestNoBaseBase::onGetBase ()
2323{
24+ ownerID = pOwner->id ();
25+
2426 if (pBaseEntityCall)
2527 delete pBaseEntityCall;
2628
@@ -29,6 +31,8 @@ void TestNoBaseBase::onGetBase()
2931
3032void TestNoBaseBase::onGetCell ()
3133{
34+ ownerID = pOwner->id ();
35+
3236 if (pCellEntityCall)
3337 delete pCellEntityCall;
3438
You can’t perform that action at this time.
0 commit comments