Skip to content

Commit f3dc782

Browse files
committedOct 19, 2015
Boats: Check inventory in boat.on_punch
If puncher inventory is full, then drop boat
1 parent b292975 commit f3dc782

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎mods/boats/init.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,12 @@ function boat.on_punch(self, puncher, time_from_last_punch,
105105
self.object:remove()
106106
end)
107107
if not minetest.setting_getbool("creative_mode") then
108-
puncher:get_inventory():add_item("main", "boats:boat")
108+
local inv = puncher:get_inventory()
109+
if inv:room_for_item("main", "boats:boat") then
110+
inv:add_item("main", "boats:boat")
111+
else
112+
minetest.add_item(self.object:getpos(), "boats:boat")
113+
end
109114
end
110115
end
111116
end

2 commit comments

Comments
 (2)

kilbith commented on Oct 20, 2015

@kilbith
Contributor
git commit --amend --author "Author Name <email@address.com>"

... to attribute a commit to its real author.

paramat commented on Oct 27, 2015

@paramat
ContributorAuthor

Thanks.

Please sign in to comment.