Every use of client.RenderIcon/ appearance refs just adds to the previous result.
Code Snippet (if applicable) to Reproduce Problem:
/mob/verb/give_me_your_appearance()
set name = "gimme"
// This looks fine
var/turf/T = loc
var/turf_icon = usr.client.RenderIcon(T.appearance)
usr << browse_rsc(turf_icon,"turf.png")
usr << browse("<html><body><img class='icon' src='turf.png'/></body></html>","window=first_use_window")
// The mob icon is now overlaid over the previous turf icon
var/our_icon = usr.client.RenderIcon(appearance)
usr << browse_rsc(our_icon,"mob.png")
usr << browse("<html><body><img class='icon' src='mob.png'/></body></html>","window=second_use_window")
// If there was third one it would be added on top of the mob+turf
// Also happens when just changing dir of single thing
// Same result when using this instead or client.RenderIcon
//var/app_ref = ref(appearance)
//world << "Displayed appearance ref: [app_ref]"
//usr << browse("<html><body><img class='icon' src='[app_ref]'/></body></html>","window=first_use_window")
Expected Results:
Turf image in window one
Mob image in window two
Actual Results:
Turf image in window one
Mob image on top of turf image in window two