Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xdecor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
xdecor
Commits
114cef15
Commit
114cef15
authored
9 years ago
by
Jean-Patrick Guerrero
Browse files
Options
Downloads
Patches
Plain Diff
Work Bench: attempt to fix unknown nodes
parent
fda92376
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workbench.lua
+16
-11
16 additions, 11 deletions
workbench.lua
with
16 additions
and
11 deletions
workbench.lua
+
16
−
11
View file @
114cef15
...
...
@@ -3,15 +3,18 @@ screwdriver = screwdriver or {}
-- Nodes allowed to be cut.
-- Only the regular, solid blocks without formspec or explosivity can be cut.
function
workbench
:
nodes
(
def
)
return
(
def
.
drawtype
==
"normal"
or
def
.
drawtype
:
find
(
"glass"
))
and
(
def
.
groups
.
cracky
or
def
.
groups
.
choppy
)
and
not
def
.
on_construct
and
not
def
.
after_place_node
and
not
def
.
after_place_node
and
not
def
.
on_rightclick
and
not
def
.
on_blast
and
not
def
.
allow_metadata_inventory_take
and
not
(
def
.
groups
.
not_in_creative_inventory
==
1
)
and
not
def
.
groups
.
wool
and
not
def
.
description
:
find
(
"Ore"
)
and
def
.
description
and
def
.
description
~=
""
and
def
.
light_source
==
0
local
nodes
=
{}
for
node
,
def
in
pairs
(
minetest
.
registered_nodes
)
do
if
(
def
.
drawtype
==
"normal"
or
def
.
drawtype
:
find
(
"glass"
))
and
(
def
.
groups
.
cracky
or
def
.
groups
.
choppy
)
and
not
def
.
on_construct
and
not
def
.
after_place_node
and
not
def
.
after_place_node
and
not
def
.
on_rightclick
and
not
def
.
on_blast
and
not
def
.
allow_metadata_inventory_take
and
not
(
def
.
groups
.
not_in_creative_inventory
==
1
)
and
not
def
.
groups
.
wool
and
not
def
.
description
:
find
(
"Ore"
)
and
def
.
description
and
def
.
description
~=
""
and
def
.
light_source
==
0
then
nodes
[
#
nodes
+
1
]
=
node
end
end
-- Nodeboxes definitions.
...
...
@@ -216,9 +219,11 @@ xdecor.register("workbench", {
})
for
_
,
d
in
pairs
(
workbench
.
defs
)
do
for
node
in
pairs
(
minetest
.
registered_nodes
)
do
for
i
=
1
,
#
nodes
do
local
node
=
nodes
[
i
]
local
def
=
minetest
.
registered_nodes
[
node
]
if
workbench
:
nodes
(
def
)
and
d
[
3
]
then
if
d
[
3
]
then
local
groups
,
tiles
=
{},
{}
groups
.
not_in_creative_inventory
=
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment