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 @@ -101,19 +101,19 @@ std::string ClientSDKUE4::typeToType(const std::string& type)
101
101
}
102
102
else if (type == " PYTHON" )
103
103
{
104
- return type ;
104
+ return " TArray<uint8> " ;
105
105
}
106
106
else if (type == " PY_DICT" )
107
107
{
108
- return type ;
108
+ return " TArray<uint8> " ;
109
109
}
110
110
else if (type == " PY_TUPLE" )
111
111
{
112
- return type ;
112
+ return " TArray<uint8> " ;
113
113
}
114
114
else if (type == " PY_LIST" )
115
115
{
116
- return type ;
116
+ return " TArray<uint8> " ;
117
117
}
118
118
else if (type == " BLOB" )
119
119
{
Original file line number Diff line number Diff line change @@ -99,19 +99,19 @@ std::string ClientSDKUnity::typeToType(const std::string& type)
99
99
}
100
100
else if (type == " PYTHON" )
101
101
{
102
- return type ;
102
+ return " byte[] " ;
103
103
}
104
104
else if (type == " PY_DICT" )
105
105
{
106
- return type ;
106
+ return " byte[] " ;
107
107
}
108
108
else if (type == " PY_TUPLE" )
109
109
{
110
- return type ;
110
+ return " byte[] " ;
111
111
}
112
112
else if (type == " PY_LIST" )
113
113
{
114
- return type ;
114
+ return " byte[] " ;
115
115
}
116
116
else if (type == " BLOB" )
117
117
{
You can’t perform that action at this time.
0 commit comments