- [FIX] No funcionaba el llevar un objecte de l'inventari

- [NEW] Afegits més objectes
This commit is contained in:
2024-02-15 17:51:06 +01:00
parent 3de87f046e
commit d3fe7feff4
2 changed files with 4 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 788 B

After

Width:  |  Height:  |  Size: 900 B

View File

@@ -10,7 +10,7 @@ objects={
leave=function(name)
for i,obj in ipairs(objects.list) do
if object[obj].name and object[obj].name==name then
if obj==name then
table.remove(objects.list,i)
return
end
@@ -35,5 +35,7 @@ objects={
object={
diskito_knunk={name="DISQUITO DE KNUNK",x=0,y=0},
diskito_usufondo={name="DISQUITO DE USUFONDO",x=16,y=0}
diskito_usufondo={name="DISQUITO DE USUFONDO",x=16,y=0},
moneda={name="MONEDA",x=32,y=0},
apuntes={name="APUNTES",x=48,y=0},
}