aboutsummaryrefslogtreecommitdiff
path: root/Bitspace 2.0/Bitspace 2.0/Game map/Map.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Bitspace 2.0/Bitspace 2.0/Game map/Map.cs')
-rw-r--r--Bitspace 2.0/Bitspace 2.0/Game map/Map.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bitspace 2.0/Bitspace 2.0/Game map/Map.cs b/Bitspace 2.0/Bitspace 2.0/Game map/Map.cs
index a012185..24902f2 100644
--- a/Bitspace 2.0/Bitspace 2.0/Game map/Map.cs
+++ b/Bitspace 2.0/Bitspace 2.0/Game map/Map.cs
@@ -15,7 +15,7 @@ namespace Bitspace_2._0.Game_map {
public static int MinY = 0;
public static int MaxY;
- private static Dictionary<string, Biome> biomeDB = new Dictionary<string, Biome>() {
+ public static Dictionary<string, Biome> biomeDB = new Dictionary<string, Biome>() {
{ "Grass", new Biome("Grass", ',', ConsoleColor.Green, 0, 1) },
{ "Water", new Biome("Water", '-', ConsoleColor.Blue, true, 1, 0) },
{ "Lava", new Biome("Lava", '#', ConsoleColor.Red, 2, 0) }
@@ -103,7 +103,6 @@ namespace Bitspace_2._0.Game_map {
foreach (var row in World) {
toReturn.AppendLine(row.ToString());
}
-
return toReturn.ToString();
}
}