mirror of
https://github.com/tacigar/maidroid.git
synced 2024-11-18 16:10:25 +01:00
18 lines
398 B
Lua
18 lines
398 B
Lua
|
------------------------------------------------------------
|
||
|
-- Copyright (c) 2016 tacigar
|
||
|
-- https://github.com/tacigar/maidroid
|
||
|
------------------------------------------------------------
|
||
|
|
||
|
maidroid._aux = {}
|
||
|
|
||
|
-- maidroidのインベントリを得る
|
||
|
function maidroid._aux.get_maidroid_inventory(self)
|
||
|
return minetest.get_inventory{
|
||
|
type = "detached",
|
||
|
name = self.invname,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
|
||
|
|