aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoronefang2019-07-30 01:13:42 +1000
committeronefang2019-07-30 01:13:42 +1000
commita239b8b23dabe8800a8f34f555f25239e01e1c6b (patch)
tree749c291b9bb844ddc7cbf7772216a4c31058846f /OpenSim
parentA few typoes slipped through. (diff)
downloadopensim-SC_OLD-a239b8b23dabe8800a8f34f555f25239e01e1c6b.zip
opensim-SC_OLD-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.gz
opensim-SC_OLD-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.bz2
opensim-SC_OLD-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.xz
Move from IG to SC flavour.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/VersionInfo.cs5
-rw-r--r--OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs4
2 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Framework/VersionInfo.cs b/OpenSim/Framework/VersionInfo.cs
index d33a080..eae68b3 100644
--- a/OpenSim/Framework/VersionInfo.cs
+++ b/OpenSim/Framework/VersionInfo.cs
@@ -33,7 +33,7 @@ namespace OpenSim
33 public const string AssemblyVersionNumber = "0.9.0.*"; 33 public const string AssemblyVersionNumber = "0.9.0.*";
34 public const string IG_BUILD_NUMBER = "1"; 34 public const string IG_BUILD_NUMBER = "1";
35 35
36 public const Flavour VERSION_FLAVOUR = Flavour.IG; 36 public const Flavour VERSION_FLAVOUR = Flavour.SC;
37 37
38 public enum Flavour 38 public enum Flavour
39 { 39 {
@@ -45,7 +45,8 @@ namespace OpenSim
45 Release, 45 Release,
46 Post_Fixes, 46 Post_Fixes,
47 Extended, 47 Extended,
48 IG 48 IG,
49 SC
49 } 50 }
50 51
51 public static string Version 52 public static string Version
diff --git a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
index 4c70a27..b003e1f 100644
--- a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
+++ b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
@@ -573,8 +573,8 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
573 /// <returns></returns> 573 /// <returns></returns>
574 private int GetFundsForAgentID(UUID AgentID) 574 private int GetFundsForAgentID(UUID AgentID)
575 { 575 {
576 int returnfunds = 90101; // Set it to the OpenSim version, plus the IG build number. Muahahaha; 576 int returnfunds = 90101; // Set it to the OpenSim version, plus the SC build number. Muahahaha;
577 577
578 return returnfunds; 578 return returnfunds;
579 } 579 }
580 580