Remove fieldinfo from entity prop

This commit is contained in:
Lol3rrr
2024-10-17 21:38:22 +02:00
parent 14c422983e
commit ba48e89617
2 changed files with 0 additions and 3 deletions

View File

@@ -18,7 +18,6 @@ pub struct EntityState {
#[derive(Debug, Clone, PartialEq)]
pub struct EntityProp {
pub field_info: super::sendtables::FieldInfo,
pub prop_info: super::propcontroller::PropInfo,
pub value: super::variant::Variant,
}
@@ -88,7 +87,6 @@ impl EntityContext {
if let Some(fi) = field_info {
if let Some(prop_info) = prop_controller.prop_infos.get(&fi.prop_id) {
fields.push(EntityProp {
field_info: fi,
prop_info: prop_info.clone(),
value: result,
});