Skip to content

Commit

Permalink
Fix Literally Unplayable error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehni committed Dec 18, 2018
1 parent f1969fc commit cdb0b37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Adds more interaction with and between factions, bringing the world to life.
<b>A living world</b>
- Pirates spread out and grow outposts
- Pirates can demand tribute if they're close by - destroy their outposts!
- Show off your skills at the yearly exposition. Maybe you'll do well and be invited to host next year?
<b>Warring factions</b>
- Unrest is brewing between two factions! Will you pick a side, stay neutral or profiteer?
Expand All @@ -36,6 +37,7 @@ Adds more interaction with and between factions, bringing the world to life.
- Hunter's Lodge
- Pirate extortion
- Mystical Shaman
- Annual Expo
- Faction WAR
]]>
</description>
Expand Down
Binary file modified Assemblies/MoreFactionInteraction.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private string MaybeTheySuckAndDontHaveItYet(Buff buff, Pawn pawn, Caravan carav
thing = ThingMaker.MakeThing(buff.RelevantThingDef());
thing.stackCount = Mathf.Min(thing.def.stackLimit, 75); //suck it, stackXXL users.
CaravanInventoryUtility.GiveThing(caravan, thing);
return "\n\n" + "MFI_SinceYouSuckAndDidntHaveIt".Translate(thing.Label);
return "\n\n" + Find.ActiveLanguageWorker.WithDefiniteArticlePostProcessed("MFI_SinceYouSuckAndDidntHaveIt".Translate(thing.Label));
}
return string.Empty;
}
Expand Down

0 comments on commit cdb0b37

Please sign in to comment.