1
0
mirror of https://github.com/pyrollo/display_modpack.git synced 2025-07-14 22:10:26 +02:00

Release 2017-08-26

This commit is contained in:
Pierre-Yves Rollo
2017-08-26 14:12:38 +02:00
parent d59c475162
commit c179f44ba4
74 changed files with 2778 additions and 324 deletions

View File

@ -2,6 +2,8 @@
This mod provides stone steles with text display. Text is locked if area is protected.
For more information, see the [forum topic](https://forum.minetest.net/viewtopic.php?f=11&t=13563) at the Minetest forums.
**Dependancies**: default, display\_lib, font\_lib, technic?
(Technic adds marble and granite steles)

View File

@ -19,11 +19,11 @@
--]]
steles = {}
steles.path = minetest.get_modpath("steles")
steles.name = minetest.get_current_modname()
steles.path = minetest.get_modpath(steles.name)
-- Load support for intllib.
local MP = minetest.get_modpath(minetest.get_current_modname())
local S, NS = dofile(MP.."/intllib.lua")
local S, NS = dofile(steles.path.."/intllib.lua")
steles.intllib = S
dofile(steles.path.."/config.lua")

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-08-05 10:06+0200\n"
"POT-Creation-Date: 2017-08-26 11:29+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -87,6 +87,7 @@ for i, material in ipairs(steles.materials) do
end
end
end,
on_punch = function(pos, node, player, pointed_thing) display_lib.update_entities(pos) end,
})
end
end