Skip to content

Commit

Permalink
Fix unlocalized name deep-fried-burnt-item (new-frontiers-14#535)
Browse files Browse the repository at this point in the history
Fix unlocalized name

WHEW.
  • Loading branch information
jzburda authored and dvir001 committed Dec 22, 2023
1 parent 1e36166 commit 6ae59af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,11 +514,11 @@ private void UpdateDeepFriedName(EntityUid uid, DeepFriedComponent component)
// Already handled at OnInitDeepFried.
break;
case 1:
_meta.SetEntityName(uid, Loc.GetString("deep-fried-fried-item",
_metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-crispy-item",
("entity", component.OriginalName)));
break;
default:
_meta.SetEntityName(uid, Loc.GetString("deep-fried-burned-item",
_metaDataSystem.SetEntityName(uid, Loc.GetString("deep-fried-burned-item",
("entity", component.OriginalName)));
break;
}
Expand Down

0 comments on commit 6ae59af

Please sign in to comment.