Hypo can inject solutions back into beakers (#19877)

* Inject to beakers

* Stop fighting in my pr

* Review
This commit is contained in:
Vasilis
2023-09-07 18:49:02 +02:00
committed by GitHub
parent 63c7bca04e
commit 2446c6a37b
3 changed files with 17 additions and 6 deletions

View File

@@ -19,5 +19,11 @@ namespace Content.Server.Chemistry.Components
[DataField("injectSound")]
public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg");
/// <summary>
/// Whether or not the hypo is able to inject only into mobs. On false you can inject into beakers/jugs
/// </summary>
[DataField("onlyMobs")]
public bool OnlyMobs = true;
}
}