From 14ee61ab9253f975c311bc63044296a45ddf35bb Mon Sep 17 00:00:00 2001 From: Craig Davison Date: Wed, 29 Jul 2015 20:36:58 +0100 Subject: [PATCH] Fix mese block alias It should alias the old name (mese_block) to the new/current name (mese) rather than the other way round. --- mods/default/aliases.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/aliases.lua b/mods/default/aliases.lua index 72477513..203cd616 100644 --- a/mods/default/aliases.lua +++ b/mods/default/aliases.lua @@ -69,4 +69,4 @@ minetest.register_alias("clay_brick", "default:clay_brick") minetest.register_alias("snow", "default:snow") -- Mese now comes in the form of blocks, ore, crystal and fragments -minetest.register_alias("default:mese", "default:mese_block") +minetest.register_alias("default:mese_block", "default:mese")