File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
kbe/src/server/tools/kbcmd Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -83,19 +83,19 @@ std::string ClientSDKUE4::typeToType(const std::string& type)
83
83
}
84
84
else if (type == " PYTHON" )
85
85
{
86
- return type ;
86
+ return " TArray<uint8> " ;
87
87
}
88
88
else if (type == " PY_DICT" )
89
89
{
90
- return type ;
90
+ return " TArray<uint8> " ;
91
91
}
92
92
else if (type == " PY_TUPLE" )
93
93
{
94
- return type ;
94
+ return " TArray<uint8> " ;
95
95
}
96
96
else if (type == " PY_LIST" )
97
97
{
98
- return type ;
98
+ return " TArray<uint8> " ;
99
99
}
100
100
else if (type == " BLOB" )
101
101
{
Original file line number Diff line number Diff line change @@ -81,19 +81,19 @@ std::string ClientSDKUnity::typeToType(const std::string& type)
81
81
}
82
82
else if (type == " PYTHON" )
83
83
{
84
- return type ;
84
+ return " byte[] " ;
85
85
}
86
86
else if (type == " PY_DICT" )
87
87
{
88
- return type ;
88
+ return " byte[] " ;
89
89
}
90
90
else if (type == " PY_TUPLE" )
91
91
{
92
- return type ;
92
+ return " byte[] " ;
93
93
}
94
94
else if (type == " PY_LIST" )
95
95
{
96
- return type ;
96
+ return " byte[] " ;
97
97
}
98
98
else if (type == " BLOB" )
99
99
{
You can’t perform that action at this time.
0 commit comments