-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee6ba81
commit a8e450d
Showing
8 changed files
with
256 additions
and
34 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 1.5.2.0 | ||
|
||
## Features | ||
|
||
- Updated for Rimworld 1.5 | ||
- Added settings to the mod | ||
- You can now decide what the max level is (setting) | ||
- You can now remove notifications for crafts (masterwork/legendary spam) | ||
- You can now select the size of the buffer for genes (in case you need more than +20 for bills) | ||
|
||
## Bugfixes | ||
|
||
- Fixed problems with Vanilla Traits Expanded | ||
- Locally fixed the issues of prices going to the lowest instead of needing another mod (New setting) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<LanguageData> | ||
|
||
<EndlessGrowth_pleaseRestart>Please restart to apply modifications!</EndlessGrowth_pleaseRestart> | ||
<EndlessGrowthModSettingsCategoryLabel>Endless Growth</EndlessGrowthModSettingsCategoryLabel> | ||
<EndlessGrowth_maxLevelExplanation>Sets the max level. -1 for infinite.</EndlessGrowth_maxLevelExplanation> | ||
<EndlessGrowth_unlimitedPriceExplanation>Set to true to allow the sell price to be above the buy price (and trust yourself not to abuse it).</EndlessGrowth_unlimitedPriceExplanation> | ||
<EndlessGrowth_gapForMaxBillExplanation>The gap between your highest skill level and the max level possible in bills. Changing this will probably need you to redo the max on your existing bills.</EndlessGrowth_gapForMaxBillExplanation> | ||
<EndlessGrowth_craftNotificationsEnabledExplanation>Are the Masterwork/Legendary craft notifications enabled?</EndlessGrowth_craftNotificationsEnabledExplanation> | ||
|
||
|
||
</LanguageData> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Verse; | ||
|
||
namespace SlimeSenpai.EndlessGrowth | ||
{ | ||
public class EndlessGrowthModSettings : ModSettings | ||
{ | ||
public int maxLevel = -1; | ||
|
||
public string maxLevelString; | ||
|
||
public bool unlimitedPrice = false; | ||
|
||
public int gapForMaxBill = 20; | ||
|
||
public string gapForMaxBillString; | ||
|
||
public bool craftNotificationsEnabled = false; | ||
|
||
public override void ExposeData() | ||
{ | ||
Scribe_Values.Look(ref maxLevel, "maxLevel"); | ||
Scribe_Values.Look(ref unlimitedPrice, "unlimitedPrice"); | ||
Scribe_Values.Look(ref gapForMaxBill, "gapForMaxBill"); | ||
Scribe_Values.Look(ref craftNotificationsEnabled, "craftNotificationsEnabled"); | ||
base.ExposeData(); | ||
} | ||
} | ||
} |
Oops, something went wrong.