1
0
mirror of https://bitbucket.org/minetest_gamers/x_enchanting.git synced 2025-06-28 22:06:17 +02:00

Compare commits

...

4 Commits

Author SHA1 Message Date
f4ed507897 Add missing use_texture_alpha 2023-04-01 14:40:34 -04:00
01703cb0a3 3 Add support for item_drop mod 2023-02-26 15:45:25 +00:00
c5c53b63ee 3 Fix indentation 2023-02-26 10:42:06 -05:00
4a0b45f472 3 Add support for item_drop mod 2023-02-26 10:34:18 -05:00
4 changed files with 6 additions and 4 deletions

View File

@ -178,6 +178,7 @@ end
## Optional Dependencies
- xdecor (adjusts conflicting recipe)
- item_drop (make sure fortune will execute before item_drop mod overrides `handle_node_drops`)
## License:

View File

@ -309,9 +309,9 @@ end
---Find element v of t satisfying f(v)
local function tableFind(t, f)
for _, v in ipairs(t) do
if f(v) then
return v
end
if f(v) then
return v
end
end
return nil

View File

@ -1,6 +1,6 @@
name = x_enchanting
description = Adds Enchanting Mechanics and API.
depends =
optional_depends = xdecor
optional_depends = xdecor, item_drop
supported_games = minetest_game
min_minetest_version = 5.4

View File

@ -31,6 +31,7 @@ minetest.register_node('x_enchanting:table', {
drawtype = 'mesh',
mesh = 'x_enchanting_table.obj',
tiles = { 'x_enchanting_table.png' },
use_texture_alpha = 'clip',
paramtype = 'light',
paramtype2 = 'facedir',
walkable = true,