1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 14:16:06 +02:00

Fixed admin armor's leggings texture

- Fixed admin armor leggings texture which looked like both leggings and boots
 - Chmoded textures in throwing
 - Fixed indentation in money/init.lua
 - Updated timestamp of compassgps's README.md
This commit is contained in:
LeMagnesium
2015-07-04 15:15:49 +02:00
parent bb6be97c04
commit 87d03b9aff
6 changed files with 3 additions and 4 deletions

View File

@ -169,8 +169,8 @@ minetest.register_node("money:shop", {
sounds = default.node_sound_wood_defaults(),
paramtype2 = "facedir",
after_place_node = function(pos, placer)
local meta = minetest.get_meta(pos)
meta:set_string("owner", placer:get_player_name())
local meta = minetest.get_meta(pos)
meta:set_string("owner", placer:get_player_name())
meta:set_string("infotext", "Untuned Shop (owned by " .. placer:get_player_name() .. ")")
end,
on_construct = function(pos)
@ -655,4 +655,3 @@ minetest.register_node("money:admin_barter_shop", {
--End.
minetest.register_alias("admin_barter_shop", "money:admin_barter_shop")