Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
homedecor_modpack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
homedecor_modpack
Commits
017326db
Commit
017326db
authored
6 years ago
by
Eugen Wesseloh
Committed by
Vanessa Dannenberg
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
replace print with verbose logging (#409)
* remove debug log
parent
31bf6b8c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
homedecor/climate-control.lua
+0
-1
0 additions, 1 deletion
homedecor/climate-control.lua
homedecor/furniture.lua
+0
-2
0 additions, 2 deletions
homedecor/furniture.lua
homedecor/init.lua
+3
-1
3 additions, 1 deletion
homedecor/init.lua
lrfurn/armchairs.lua
+0
-1
0 additions, 1 deletion
lrfurn/armchairs.lua
with
3 additions
and
5 deletions
homedecor/climate-control.lua
+
0
−
1
View file @
017326db
...
...
@@ -25,7 +25,6 @@ minetest.register_entity("homedecor:mesh_desk_fan", {
})
local
add_mesh_desk_fan_entity
=
function
(
pos
)
print
(
"in add_mesh_desk_fan_entity()"
)
local
param2
=
minetest
.
get_node
(
pos
).
param2
local
entity
=
minetest
.
add_entity
(
pos
,
"homedecor:mesh_desk_fan"
)
if
param2
==
0
then
...
...
This diff is collapsed.
Click to expand it.
homedecor/furniture.lua
+
0
−
2
View file @
017326db
...
...
@@ -235,8 +235,6 @@ minetest.register_lbm({
local
param2
=
paletteidx
+
new_fdir
local
newname
=
"homedecor:armchair"
print
(
name
,
dump
(
a
),
dump
(
b
),
dump
(
color
)
..
"("
..
dump
(
paletteidx
)
..
")"
,
dump
(
param2
))
if
node
.
name
==
"homedecor:chair"
then
newname
=
"homedecor:kitchen_chair_wood"
elseif
string.find
(
node
.
name
,
"homedecor:chair_"
)
then
...
...
This diff is collapsed.
Click to expand it.
homedecor/init.lua
+
3
−
1
View file @
017326db
...
...
@@ -119,4 +119,6 @@ dofile(modpath.."/wardrobe.lua")
dofile
(
modpath
..
"/crafts.lua"
)
print
(
"[HomeDecor] "
..
S
(
"Loaded!"
))
if
minetest
.
settings
:
get_bool
(
"log_mod"
)
then
minetest
.
log
(
"action"
,
"[HomeDecor] "
..
S
(
"Loaded!"
))
end
This diff is collapsed.
Click to expand it.
lrfurn/armchairs.lua
+
0
−
1
View file @
017326db
...
...
@@ -64,7 +64,6 @@ lrfurn.old_static_armchairs = {}
for
_
,
color
in
ipairs
(
lrfurn
.
colors
)
do
table.insert
(
lrfurn
.
old_static_armchairs
,
"lrfurn:armchair_"
..
color
)
print
(
"lrfurn:armchair_"
..
color
)
end
minetest
.
register_lbm
({
...
...
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