1
0
mirror of https://github.com/tacigar/maidroid.git synced 2025-03-21 11:30:23 +01:00
maidroid/_aux.lua

15 lines
380 B
Lua
Raw Normal View History

2016-05-31 13:26:54 +09:00
------------------------------------------------------------
-- Copyright (c) 2016 tacigar
-- https://github.com/tacigar/maidroid
------------------------------------------------------------
maidroid._aux = {}
2016-06-02 13:18:58 +09:00
-- get inventory of the maidroid
2016-05-31 13:26:54 +09:00
function maidroid._aux.get_maidroid_inventory(self)
2016-09-13 09:48:17 +09:00
return minetest.get_inventory{
type = "detached",
name = self.invname,
}
2016-05-31 13:26:54 +09:00
end