Skip to content

Commit 8849a56

Browse files
committed
fix: Destroy All Dropped Items Command despawn items
1 parent 2a7acf3 commit 8849a56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/CommandsManager.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,8 @@ CreateCommand({ "killdropped", "killalldrop", "killalldropped", "killdropped", "
12271227
local killCount = 0
12281228
for _, item in ipairs(items) do
12291229
if not item.HasBeenPickedUp then
1230-
item:K2_DestroyActor()
1230+
item:InitDespawn()
1231+
item:OnItemDespawn()
12311232
killCount = killCount + 1
12321233
end
12331234
end

scripts/main.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local AFUtils = require("AFUtils.AFUtils")
1111
local UEHelpers = require("UEHelpers")
1212

1313
ModName = "CheatConsoleCommands"
14-
ModVersion = "1.20.0"
14+
ModVersion = "1.20.1"
1515
DebugMode = true
1616
IsModEnabled = true
1717

0 commit comments

Comments
 (0)