mirror of
https://codeberg.org/demostf/parser.git
synced 2026-06-03 10:14:06 +02:00
dont store table name as string in sendpropdefinition
This commit is contained in:
parent
02819d59ec
commit
7fe9fd0fce
5 changed files with 27 additions and 34 deletions
|
|
@ -111,7 +111,7 @@ impl MessageHandler for EntityDumper {
|
|||
for prop_def in &table.props {
|
||||
self.prop_names.insert(
|
||||
prop_def.identifier(),
|
||||
(prop_def.owner_table.clone(), prop_def.name.clone()),
|
||||
(table.name.clone(), prop_def.name.clone()),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue