Skip to content

Commit

Permalink
Updated for KSP 0.90.0
Browse files Browse the repository at this point in the history
  • Loading branch information
snjo committed Dec 16, 2014
1 parent 79e3c0c commit 842262a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Firespitter/aero/FSwingBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ public void Update()
EditorLogic editor = EditorLogic.fetch;
if (editor)
{
if (editor.editorScreen == EditorLogic.EditorScreen.Actions)// && popup.showMenu)
if (editor.editorScreen == EditorScreen.Actions)// && popup.showMenu)
{
Vector4 inputAxis = Vector4.zero;

Expand Down
4 changes: 4 additions & 0 deletions Firespitter/customization/FSfuelSwitch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,10 @@ public float GetModuleCost()
{
return updateCost();
}
public float GetModuleCost(float modifier)
{
return updateCost();
}

public override string GetInfo()
{
Expand Down
2 changes: 1 addition & 1 deletion Firespitter/gui/FSGUIPopup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public void popup()
EditorLogic editor = EditorLogic.fetch;
if (editor)
{
if (editor.editorScreen == EditorLogic.EditorScreen.Actions)
if (editor.editorScreen == EditorScreen.Actions)
{
List<Part> partlist = EditorActionGroups.Instance.GetSelectedParts();
if (partlist.Count > 0)
Expand Down
2 changes: 1 addition & 1 deletion Firespitter/tools/FSversionCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class FSversionCheck : MonoBehaviour
{
static int CompatibleWithMajor = 0;
static int CompatibleWithMinor = 25;
static int CompatibleWithMinor = 90;
static int CompatibleWithRevision = 0;
static System.Version FSversion;

Expand Down
10 changes: 5 additions & 5 deletions For release/Firespitter/Firespitter.version
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"NAME": "Firespitter",
"URL": "https://raw.githubusercontent.com/snjo/Firespitter/master/For%20release/Firespitter/Firespitter.version",
"VERSION": {
"MAJOR": 6,
"MINOR": 3,
"PATCH": 5
"MAJOR": 7,
"MINOR": 0,
"PATCH": 0
},
"KSP_VERSION": {
"MAJOR": 0,
"MINOR": 24,
"PATCH": 2
"MINOR": 90,
"PATCH": 0
}
}
Binary file modified For release/Firespitter/Plugins/Firespitter.dll
Binary file not shown.

0 comments on commit 842262a

Please sign in to comment.