diff --git a/res/content/base/modules/util.lua b/res/content/base/modules/util.lua index 11e3717b..2112c210 100644 --- a/res/content/base/modules/util.lua +++ b/res/content/base/modules/util.lua @@ -1,6 +1,6 @@ -local base_entities = {} +local util = {} -function base_entities.drop(ppos, itemid, count, pickup_delay) +function util.drop(ppos, itemid, count, pickup_delay) if itemid == 0 or not itemid then return nil end @@ -11,4 +11,4 @@ function base_entities.drop(ppos, itemid, count, pickup_delay) }}) end -return base_entities +return util