diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-07 18:34:21 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-06-07 18:34:21 +0200 |
commit | 20b8961640b6c22d4149f7268d403cb4609a03fb (patch) | |
tree | 0acdb70090ee8db3e77b5a5ad4573cdd13503e8f /nether_portal.lua | |
parent | cc84f066b001f4ea875b115ace6d533d1bc8b4f3 (diff) | |
download | skycraft-20b8961640b6c22d4149f7268d403cb4609a03fb.tar.xz |
New file Structure
Diffstat (limited to 'nether_portal.lua')
-rw-r--r-- | nether_portal.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/nether_portal.lua b/nether_portal.lua deleted file mode 100644 index 1c3dc0b..0000000 --- a/nether_portal.lua +++ /dev/null @@ -1,10 +0,0 @@ -minetest.register_on_mods_loaded(function() - local old_light_nether_portal = mcl_portals.light_nether_portal - function mcl_portals.light_nether_portal(pos) - if mcl_worlds.pos_to_dimension(pos) == "nether" then - return false - else - return old_light_nether_portal(pos) - end - end -end) |