mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-08-24 03:52:17 +08:00
Remove spaces from field type names
This commit is contained in:
@@ -147,7 +147,9 @@ fn read_class_binding_fields(
|
||||
let schema_type = process.read_ptr(field.schema_type)?;
|
||||
|
||||
// TODO: Parse this properly.
|
||||
let ty = process.read_char_string(schema_type.name.address())?;
|
||||
let ty = process
|
||||
.read_char_string(schema_type.name.address())?
|
||||
.replace(" ", "");
|
||||
|
||||
Ok(ClassField {
|
||||
name,
|
||||
|
Reference in New Issue
Block a user