mob/proc
Upload_Icon(F as icon)
Icons.Add(F) // this is is for a var list which includes some mob's icons.
var/icon/S = new/icon (F) // this is for creating a new icon using the previous file (I do this so I can have a thumbnail)
S.Scale(96, 96)
Thumbnails.Add(S)
For some reason when I try to display S I get nothing, I don't really know where's the error because I've tried some other ways, but none worked. F is showed correctly, but I never get it to work with S, any idea? :S
Thank you!
Using fcopy_rsc on S would return the S graphic in an equivalent format as F, so it should probably work.