Files
wwdpublic/Content.Server/NPC/Queries/Considerations/TargetOnFireCon.cs
Golinth 6b6cbdad00 Added Firebots - Real (#32482)
* Add Firebots

Had to add OnActivateInWorld to the spray system to get the bot to work. Checks for the flammable component and if the onFire boolean is true.

* Make SpraySystem actually use useDelay

got rid of that TODO

* Added firebot speech

Fire detected!

(cherry picked from commit 3b682d4d68c82b218a3727961241e519a91677f1)
2025-07-20 15:49:37 +10:00

10 lines
209 B
C#

namespace Content.Server.NPC.Queries.Considerations;
/// <summary>
/// Returns 1f if the target is on fire or 0f if not.
/// </summary>
public sealed partial class TargetOnFireCon : UtilityConsideration
{
}