diff options
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/world.hpp b/src/world.hpp index cea599b..81e5b9d 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -43,13 +43,13 @@ struct WorldMaterial Texture normal; WorldMaterial(sol::table tab) { - if (tab["texture"] == sol::type::string) { - std::string tex = tab["texture"]; - texture = Texture(tex); + if (tab["texture"] != nullptr) { + sol::object t = tab["texture"]; + texture = Texture(t); } - if (tab["normal"] == sol::type::string) { - std::string nor = tab["normal"]; - normal = Texture(nor); + if (tab["normal"] != nullptr) { + sol::object n = tab["normal"]; + normal = Texture(n); } if (tab["passable"] == sol::type::boolean) { passable = tab["passable"]; |