Rename Miasma to Ammonia (#22791)

* Rename Miasma to Ammonia

* Namespace changes

* Map change????? why
This commit is contained in:
Kara
2023-12-20 21:19:50 -07:00
committed by GitHub
parent bf7c788099
commit ad97580727
40 changed files with 134 additions and 194 deletions

View File

@@ -67,7 +67,7 @@ namespace Content.Server.RatKing
}
/// <summary>
/// uses hunger to release a specific amount of miasma into the air. This heals the rat king
/// uses hunger to release a specific amount of ammonia into the air. This heals the rat king
/// and his servants through a specific metabolism.
/// </summary>
private void OnDomain(EntityUid uid, RatKingComponent component, RatKingDomainActionEvent args)
@@ -89,7 +89,7 @@ namespace Content.Server.RatKing
_popup.PopupEntity(Loc.GetString("rat-king-domain-popup"), uid);
var tileMix = _atmos.GetTileMixture(uid, excite: true);
tileMix?.AdjustMoles(Gas.Miasma, component.MolesMiasmaPerDomain);
tileMix?.AdjustMoles(Gas.Ammonia, component.MolesAmmoniaPerDomain);
}
private void OnPointedAt(EntityUid uid, RatKingComponent component, ref AfterPointedAtEvent args)