aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/entities.hpp4
-rw-r--r--src/world.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/entities.hpp b/include/entities.hpp
index c62e625..e7864d0 100644
--- a/include/entities.hpp
+++ b/include/entities.hpp
@@ -2,9 +2,9 @@
#define ENTITIES_H
#include <common.hpp>
-#include <Quest.hpp>
+#include <quest.hpp>
#include <inventory.hpp>
-#include <Texture.hpp>
+#include <texture.hpp>
#include <sstream>
diff --git a/src/world.cpp b/src/world.cpp
index 0cff9d4..ba24c95 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -1444,7 +1444,7 @@ std::string getWorldWeatherStr( WorldWeather ww )
return "Rainy";
break;
default:
- return "Look at the screen u scrub";
+ return "Snowy";
break;
}
}