Skip to content

Commit

Permalink
FTL Update
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 committed Nov 22, 2023
1 parent eac250a commit ff032cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Content.Server/Traits/Assorted/StinkyTraitSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ public override void Update(float frameTime)
tileMix?.AdjustMoles(component.SpawnGas.Value, 0.01f * physics.FixturesMass);
}

var othersMessage = Loc.GetString("trait-stinky-in-range", ("target", uid));
var othersMessage = Loc.GetString("trait-stinky-in-range-others", ("target", uid));
_popup.PopupEntity(othersMessage, uid, Filter.PvsExcept(uid), true);

var selfMessage = Loc.GetString("miasma-smell");
var selfMessage = Loc.GetString("trait-stinky-in-range-self");
_popup.PopupEntity(selfMessage, uid, uid);
}
}
Expand Down
3 changes: 2 additions & 1 deletion Resources/Locale/en-US/_NF/traits/traits.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ trait-stinky-desc = You smell bad, like a dying corpse.
trait-stinky-examined = [color=lightblue]{CAPITALIZE(SUBJECT($target))} smells foul.[/color]
trait-stinky-in-range = {$target} smells foul!
trait-stinky-in-range-others = {$target} smells foul!
trait-stinky-in-range-self = Something smells foul!

0 comments on commit ff032cc

Please sign in to comment.