Add basic group functionality (no voxygen wiring yet)

This commit is contained in:
Imbris
2020-04-26 13:03:19 -04:00
committed by Monty Marz
parent 1741384d00
commit 10c3d01466
24 changed files with 1028 additions and 87 deletions

View File

@ -96,6 +96,9 @@ impl<'a> System<'a> for Sys {
}
server_emitter.emit(ServerEvent::InventoryManip(entity, manip))
},
ControlEvent::GroupManip(manip) => {
server_emitter.emit(ServerEvent::GroupManip(entity, manip))
},
ControlEvent::Respawn => server_emitter.emit(ServerEvent::Respawn(entity)),
}
}