Drop()
set src in usr
set category = null
if(src.amount>1)
src.amount--
var/obj/item/s=new(src)
s.Move(usr.loc)
s.amount=1
if(src.amount==1) src.suffix=""
else src.suffix="x [src.amount]"
else
src.Move(usr.loc)
Problem description:
s dosn't appear.I think it might be something with new() but I can't see what.
Maybe you want to try
BTW, why are you force setting the amount to 1 just a bit lower of the --?
- GhostAnime