Skip to content

Commit

Permalink
Fixed download link in .version file
Browse files Browse the repository at this point in the history
 Moved ModuleManager configs into new folder called MM_Configs
 Added contributed file from forum user @gordon Dry to fix issues where biomeMask and situationMask are 0
  • Loading branch information
linuxgurugamer committed Oct 28, 2018
1 parent bb5d5be commit 03b98b5
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 5 deletions.
4 changes: 3 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

1.9.4.x
1.9.4.4
Fixed download link in .version file
Moved ModuleManager configs into new folder called MM_Configs
Added contributed file from forum user @Gordon Dry to fix issues where biomeMask and situationMask are 0

1.9.4.3
Version bump for 1.5 rebuild
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
//
// This file contributed by forum user @Gordon Dry to fix any science which
// doesn't have a situation mask
//
@EXPERIMENT_DEFINITION:HAS[#situationMask[0],~biomeMask[],#requireAtmosphere[?alse]|#requireAtmosphere[FALSE]]:FINAL
{
@situationMask = 48
@biomeMask = 48
}
@EXPERIMENT_DEFINITION:HAS[#situationMask[0],#biomeMask[0],#requireAtmosphere[?alse]|#requireAtmosphere[FALSE]]:FINAL
{
@situationMask = 48
@biomeMask = 48
}
@EXPERIMENT_DEFINITION:HAS[#situationMask[0],~biomeMask[],#requireAtmosphere[?rue]|#requireAtmosphere[TRUE]]:FINAL
{
@situationMask = 63
@biomeMask = 63
}
@EXPERIMENT_DEFINITION:HAS[#situationMask[0],#biomeMask[0],#requireAtmosphere[?rue]|#requireAtmosphere[TRUE]]:FINAL
{
@situationMask = 63
@biomeMask = 63
}
@EXPERIMENT_DEFINITION:HAS[#situationMask[0],#biomeMask[>0]]:FINAL
{
@situationMask = #$biomeMask$
}
@EXPERIMENT_DEFINITION:HAS[#biomeMask[0],~situationMask[],#requireAtmosphere[?alse]|#requireAtmosphere[FALSE]]:FINAL
{
@biomeMask = 48
@situationMask = 48
}
@EXPERIMENT_DEFINITION:HAS[#biomeMask[0],~situationMask[],#requireAtmosphere[?rue]|#requireAtmosphere[TRUE]]:FINAL
{
@biomeMask = 63
@situationMask = 63
}
@EXPERIMENT_DEFINITION:HAS[#biomeMask[0],#situationMask[>0]]:FINAL
{
@biomeMask = #$situationMask$
}
4 changes: 2 additions & 2 deletions GameData/ScienceAlert/ScienceAlert.version
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"NAME": "ScienceAlert",
"URL": "http://ksp.spacetux.net/avc/ScienceAlert",
"DOWNLOAD": "http://spacedock.info/mod/613/ScienceAlert",
"DOWNLOAD": "https://spacedock.info/mod/1886/ScienceAlert%20ReAlerted",
"GITHUB": {
"USERNAME": "linuxgurugamer",
"REPOSITORY": "ScienceAlert"
Expand All @@ -10,7 +10,7 @@
"MAJOR": 1,
"MINOR": 9,
"PATCH": 4,
"BUILD": 3
"BUILD": 4
},
"KSP_VERSION": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion ScienceAlert.version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"MAJOR": 1,
"MINOR": 9,
"PATCH": 4,
"BUILD": 3
"BUILD": 4
},
"KSP_VERSION": {
"MAJOR": 1,
Expand Down
2 changes: 1 addition & 1 deletion Source/AssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

using System.Reflection;

[assembly: AssemblyVersion("1.9.4.3")]
[assembly: AssemblyVersion("1.9.4.4")]

0 comments on commit 03b98b5

Please sign in to comment.