- fix: Holy water fix. (#159)

* - fix: Holy water fix.

* - tweak: Move bible check to CultSystem.

* - tweak: Remove unused.
This commit is contained in:
Aviu00
2024-03-02 18:08:32 +09:00
committed by GitHub
parent 55c0f5052f
commit 3c3c4ed6f0
3 changed files with 31 additions and 6 deletions

View File

@@ -13,7 +13,12 @@ public sealed partial class PuddleSystem
[ValidatePrototypeId<ReagentPrototype>]
private const string Water = "Water";
public static string[] EvaporationReagents = new[] { Water };
// WD EDIT START
[ValidatePrototypeId<ReagentPrototype>]
private const string HolyWater = "Holywater";
public static string[] EvaporationReagents = new[] { Water, HolyWater };
// WD EDIT END
private void OnEvaporationMapInit(Entity<EvaporationComponent> entity, ref MapInitEvent args)
{