Add a check for item size in the microwave system (#24026)

* Add a check for item size in the microwave system

* DataField suggestion

* Merge TryComp with HasComp

* Add datafield changeability for admins
This commit is contained in:
degradka
2024-01-14 00:11:09 +03:00
committed by GitHub
parent 96ae04967f
commit 562d7b4b82
3 changed files with 17 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ namespace Content.Server.Kitchen.EntitySystems
[Dependency] private readonly TemperatureSystem _temperature = default!;
[Dependency] private readonly UserInterfaceSystem _userInterface = default!;
[Dependency] private readonly HandsSystem _handsSystem = default!;
[Dependency] private readonly SharedItemSystem _item = default!;
public override void Initialize()
{
@@ -282,8 +283,18 @@ namespace Content.Server.Kitchen.EntitySystems
return;
}
if (!HasComp<ItemComponent>(args.Used))
if (TryComp<ItemComponent>(args.Used, out var item))
{
// check if size of an item you're trying to put in is too big
if (_item.GetSizePrototype(item.Size) > _item.GetSizePrototype(ent.Comp.MaxItemSize))
{
_popupSystem.PopupEntity(Loc.GetString("microwave-component-interact-item-too-big", ("item", args.Used)), ent, args.User);
return;
}
}
else
{
// check if thing you're trying to put in isn't an item
_popupSystem.PopupEntity(Loc.GetString("microwave-component-interact-using-transfer-fail"), ent, args.User);
return;
}