This commit is contained in:
MihailRis
2024-11-29 17:57:18 +03:00
parent 16a6da3753
commit b69494aea3
+3 -3
View File
@@ -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 if itemid == 0 or not itemid then
return nil return nil
end end
@@ -11,4 +11,4 @@ function base_entities.drop(ppos, itemid, count, pickup_delay)
}}) }})
end end
return base_entities return util