From cfa205d362ba6608b0da2acefe30b8c3c9ab2528 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 4 Nov 2017 15:20:41 +1100 Subject: [PATCH] Fix fog density being 2.0f instead of 1.8f (Thanks gDEBugger) --- MCGalaxy/Blocks/DefaultSet.cs | 2 +- MCGalaxy/Commands/Information/CmdFaq.cs | 2 +- MCGalaxy/MCGalaxy_.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MCGalaxy/Blocks/DefaultSet.cs b/MCGalaxy/Blocks/DefaultSet.cs index 3e3aa253c..28f6cb607 100644 --- a/MCGalaxy/Blocks/DefaultSet.cs +++ b/MCGalaxy/Blocks/DefaultSet.cs @@ -72,7 +72,7 @@ namespace MCGalaxy.Blocks { if (b == Block.Water || b == Block.StillWater) return 11; // (128 * 0.1f - 1); if (b == Block.Lava || b == Block.StillLava) - return 255; // (128 * 2 - 1); + return 229; // (128 * 1.8f - 1); return 0; } diff --git a/MCGalaxy/Commands/Information/CmdFaq.cs b/MCGalaxy/Commands/Information/CmdFaq.cs index 45cb468b0..7f55446e9 100644 --- a/MCGalaxy/Commands/Information/CmdFaq.cs +++ b/MCGalaxy/Commands/Information/CmdFaq.cs @@ -19,7 +19,7 @@ using MCGalaxy.Util; namespace MCGalaxy.Commands.Info { public sealed class CmdFaq : Command { - public override string name { get { return "Faq"; } } + public override string name { get { return "FAQ"; } } public override string type { get { return CommandTypes.Information; } } public override LevelPermission defaultRank { get { return LevelPermission.Banned; } } diff --git a/MCGalaxy/MCGalaxy_.csproj b/MCGalaxy/MCGalaxy_.csproj index b86d13a33..5bd1bee88 100644 --- a/MCGalaxy/MCGalaxy_.csproj +++ b/MCGalaxy/MCGalaxy_.csproj @@ -253,7 +253,7 @@ - +