Merge pull request #86 from RonarsCorruption/patch-3

Fixing the pickup ability
This commit is contained in:
infinitefusion
2023-04-29 10:32:06 -04:00
committed by GitHub

View File

@@ -688,7 +688,7 @@ end
def pbDynamicItemList(*args) def pbDynamicItemList(*args)
ret = [] ret = []
for i in 0...args.length for i in 0...args.length
ret.push(i) if GameData::Item.exists?(args[i]) ret.push(args[i]) if GameData::Item.exists?(args[i])
end end
return ret return ret
end end