private void OnComponentRemove(EntityUid uid, SharedChemMasterComponent component, ComponentRemove args)
 {
     _itemSlotsSystem.RemoveItemSlot(uid, component.BeakerSlot);
 }
 private void OnComponentInit(EntityUid uid, SharedChemMasterComponent component, ComponentInit args)
 {
     _itemSlotsSystem.AddItemSlot(uid, $"{component.Name}-beaker", component.BeakerSlot);
 }