Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
minetest_game
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Zadrog Pzvotrügen
minetest_game
Commits
794a436d
Commit
794a436d
authored
10 years ago
by
ShadowNinja
Browse files
Options
Downloads
Patches
Plain Diff
Fix bucket code indentation
parent
41837e61
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
mods/bucket/init.lua
+49
-49
49 additions, 49 deletions
mods/bucket/init.lua
with
49 additions
and
49 deletions
mods/bucket/init.lua
+
49
−
49
View file @
794a436d
...
...
@@ -103,55 +103,55 @@ function bucket.register_liquid(source, flowing, itemname, inventory_image, name
end
minetest
.
register_craftitem
(
"bucket:bucket_empty"
,
{
description
=
"Empty Bucket"
,
inventory_image
=
"bucket.png"
,
stack_max
=
99
,
liquids_pointable
=
true
,
on_use
=
function
(
itemstack
,
user
,
pointed_thing
)
-- Must be pointing to node
if
pointed_thing
.
type
~=
"node"
then
return
end
-- Check if pointing to a liquid source
local
node
=
minetest
.
get_node
(
pointed_thing
.
under
)
local
liquiddef
=
bucket
.
liquids
[
node
.
name
]
local
item_count
=
user
:
get_wielded_item
():
get_count
()
if
liquiddef
~=
nil
and
liquiddef
.
itemname
~=
nil
and
node
.
name
==
liquiddef
.
source
then
if
check_protection
(
pointed_thing
.
under
,
user
:
get_player_name
(),
"take "
..
node
.
name
)
then
return
end
-- default set to return filled bucket
local
giving_back
=
liquiddef
.
itemname
-- check if holding more than 1 empty bucket
if
item_count
>
1
then
-- if space in inventory add filled bucked, otherwise drop as item
local
inv
=
user
:
get_inventory
()
if
inv
:
room_for_item
(
"main"
,
{
name
=
liquiddef
.
itemname
})
then
inv
:
add_item
(
"main"
,
liquiddef
.
itemname
)
else
local
pos
=
user
:
getpos
()
pos
.
y
=
math.floor
(
pos
.
y
+
0
.
5
)
core
.
add_item
(
pos
,
liquiddef
.
itemname
)
end
-- set to return empty buckets minus 1
giving_back
=
"bucket:bucket_empty "
..
tostring
(
item_count
-
1
)
end
minetest
.
add_node
(
pointed_thing
.
under
,
{
name
=
"air"
})
return
ItemStack
(
giving_back
)
end
end
,
description
=
"Empty Bucket"
,
inventory_image
=
"bucket.png"
,
stack_max
=
99
,
liquids_pointable
=
true
,
on_use
=
function
(
itemstack
,
user
,
pointed_thing
)
-- Must be pointing to node
if
pointed_thing
.
type
~=
"node"
then
return
end
-- Check if pointing to a liquid source
local
node
=
minetest
.
get_node
(
pointed_thing
.
under
)
local
liquiddef
=
bucket
.
liquids
[
node
.
name
]
local
item_count
=
user
:
get_wielded_item
():
get_count
()
if
liquiddef
~=
nil
and
liquiddef
.
itemname
~=
nil
and
node
.
name
==
liquiddef
.
source
then
if
check_protection
(
pointed_thing
.
under
,
user
:
get_player_name
(),
"take "
..
node
.
name
)
then
return
end
-- default set to return filled bucket
local
giving_back
=
liquiddef
.
itemname
-- check if holding more than 1 empty bucket
if
item_count
>
1
then
-- if space in inventory add filled bucked, otherwise drop as item
local
inv
=
user
:
get_inventory
()
if
inv
:
room_for_item
(
"main"
,
{
name
=
liquiddef
.
itemname
})
then
inv
:
add_item
(
"main"
,
liquiddef
.
itemname
)
else
local
pos
=
user
:
getpos
()
pos
.
y
=
math.floor
(
pos
.
y
+
0
.
5
)
core
.
add_item
(
pos
,
liquiddef
.
itemname
)
end
-- set to return empty buckets minus 1
giving_back
=
"bucket:bucket_empty "
..
tostring
(
item_count
-
1
)
end
minetest
.
add_node
(
pointed_thing
.
under
,
{
name
=
"air"
})
return
ItemStack
(
giving_back
)
end
end
,
})
bucket
.
register_liquid
(
...
...
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