diff options
author | onefang | 2019-07-30 01:13:42 +1000 |
---|---|---|
committer | onefang | 2019-07-30 01:13:42 +1000 |
commit | a239b8b23dabe8800a8f34f555f25239e01e1c6b (patch) | |
tree | 749c291b9bb844ddc7cbf7772216a4c31058846f | |
parent | A few typoes slipped through. (diff) | |
download | opensim-SC-a239b8b23dabe8800a8f34f555f25239e01e1c6b.zip opensim-SC-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.gz opensim-SC-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.bz2 opensim-SC-a239b8b23dabe8800a8f34f555f25239e01e1c6b.tar.xz |
Move from IG to SC flavour.
-rw-r--r-- | OpenSim/Framework/VersionInfo.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs | 4 |
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 | ||