Skip to content

Commit

Permalink
Fix merge issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
LankLTE committed Jul 24, 2024
1 parent 0352ea9 commit 0093470
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ private void OnInsertAttempt(Entity<MicrowaveComponent> ent, ref ContainerIsInse

if (TryComp<ItemComponent>(args.EntityUid, out var item))
{
if (_item.GetSizePrototype(item.Size) > _item.GetSizePrototype(ent.Comp.MaxItemSize))
if (item.Size > ent.Comp.MaxItemSize)
{
args.Cancel();
return;
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Entities/Objects/Misc/arabianlamp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
containers:
entity_storage: !type:Container
- type: Item
size: Normal
size: 10
heldPrefix: lamp
sprite: Objects/Misc/arabianlamp.rsi
inhandVisuals:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
sprite: Objects/Specific/Medical/Surgery/saw.rsi
state: saw
- type: Item
size: Normal
size: 5
sprite: Objects/Specific/Medical/Surgery/saw.rsi
- type: Tool
qualities:
Expand All @@ -182,7 +182,7 @@
- type: Sprite
state: improv
- type: Item
size: Small
size: 10
heldPrefix: improv
- type: MeleeWeapon
damage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
types:
Blunt: 1
- type: Item
size: 2
size: 1
sprite: Objects/Weapons/Melee/e_dagger_loud.rsi
- type: UseDelay
delay: 1.0
Expand Down Expand Up @@ -190,7 +190,7 @@
shader: unshaded
map: [ "blade" ]
- type: Item
size: Tiny
size: 1
sprite: Objects/Weapons/Melee/e_dagger.rsi
- type: Tag
tags:
Expand Down
20 changes: 4 additions & 16 deletions Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@
- type: WallMount
arc: 175
- type: Storage
grid:
- 0,0,3,1
- 0,3,3,4
maxItemSize: Normal
capacity: 120
- type: UserInterface
interfaces:
enum.StorageUiKey.Key:
Expand Down Expand Up @@ -325,10 +322,7 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: Storage
grid:
- 0,0,5,1
- 0,3,5,4
maxItemSize: Normal
capacity: 120
whitelist:
tags:
- DrinkGlass
Expand Down Expand Up @@ -379,10 +373,7 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: Storage
grid:
- 0,0,5,1
- 0,3,5,4
maxItemSize: Normal
capacity: 120
whitelist:
tags:
- DrinkGlass
Expand Down Expand Up @@ -447,10 +438,7 @@
- !type:DoActsBehavior
acts: ["Destruction"]
- type: Storage
grid:
- 0,0,5,1
- 0,3,5,4
maxItemSize: Normal
capacity: 120
whitelist:
tags:
- ChemDispensable
Expand Down

0 comments on commit 0093470

Please sign in to comment.