diff --git a/Neoa/DLCS.CS b/Neoa/DLCS.CS index 211a332..33b9b28 100644 --- a/Neoa/DLCS.CS +++ b/Neoa/DLCS.CS @@ -5,7 +5,7 @@ namespace Neoa { public class YourHome { - public bool YourHome = false; + public bool Dreams = false; public bool DreamEnd = false; //name string Dreamer; @@ -19,6 +19,10 @@ namespace Neoa { Program.DisplayLine(""); } + else + { + + } } @@ -29,7 +33,7 @@ The kings court is a DLC that is completely seperate from the base game. */ public class TKC { - public bool TKC = false; + public bool KCourt = false; public static void TKCIntro() { diff --git a/Neoa/Player.cs b/Neoa/Player.cs index 913e776..b00873d 100644 --- a/Neoa/Player.cs +++ b/Neoa/Player.cs @@ -40,7 +40,8 @@ public class Player public static Stats() { - if (Program.Player.Species == "Human") + + if (Program.Player.Species == "Human") { Program.Player.Health = 105; Program.Player.Mana = 125; @@ -52,8 +53,7 @@ public static Stats() } - - if (Program.Player.Species == "Undead") + else if(Program.Player.Species == "Undead") { if(Program.Player.Subspecies == "Vampire") { @@ -97,7 +97,7 @@ public static Stats() } - if (Program.Player.Species == "Demonic") + else if(Program.Player.Species == "Demonic") { if(Program.Player.Subspecies == "Demon") { @@ -112,8 +112,7 @@ public static Stats() } } + } } - - }