Skip to content

Commit

Permalink
Merge pull request #92 from BobPalmer/DEVELOP
Browse files Browse the repository at this point in the history
Fixed warehouse toggles
  • Loading branch information
BobPalmer authored Feb 5, 2017
2 parents 21694bc + 094991e commit 2facc6a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions FOR_RELEASE/GameData/000_USITools/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
0.8.12 - 2017.02.04
0.8.13 - 2017.02.04
------------------
Dependency Updates
Fixed an issue with the new warehouse toggles

0.8.11 - 2017.01.16
-------------------
Expand Down
Binary file modified FOR_RELEASE/GameData/000_USITools/USITools.dll
Binary file not shown.
Binary file modified FOR_RELEASE/GameData/000_USITools/USITools.dll.mdb
Binary file not shown.
Binary file modified FOR_RELEASE/GameData/000_USITools/USITools.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion FOR_RELEASE/GameData/000_USITools/USITools.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"VERSION":{
"MAJOR":0,
"MINOR":8,
"PATCH":12,
"PATCH":13,
"BUILD":0
},
"KSP_VERSION":{
Expand Down
4 changes: 2 additions & 2 deletions USITools/USITools/Logistics/USI_ModuleResourceWarehouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ namespace USITools
[KSPModule("USI Warehouse")]
public class USI_ModuleResourceWarehouse : PartModule
{
[KSPField(guiName = "Planetary Warehouse", guiActive = false, guiActiveEditor = true, isPersistant = true), UI_Toggle(disabledText = "Off", enabledText = "On")]
[KSPField(guiName = "Planetary Warehouse", guiActive = true, guiActiveEditor = true, isPersistant = true), UI_Toggle(disabledText = "Off", enabledText = "On")]
public bool soiTransferEnabled = true;

[KSPField(guiName = "Local Warehouse", guiActive = false, guiActiveEditor = true, isPersistant = true), UI_Toggle(disabledText = "Off", enabledText = "On")]
[KSPField(guiName = "Local Warehouse", guiActive = true, guiActiveEditor = true, isPersistant = true), UI_Toggle(disabledText = "Off", enabledText = "On")]
public bool localTransferEnabled = true;

// Info about the module in the Editor part list
Expand Down

0 comments on commit 2facc6a

Please sign in to comment.