Hey so I have had some issues with ghosting images or images that will cling to the screen if I get into a battle (for some reason the bug contest battles don't seem to do it...) well anyway for me it clears its-self up in about 10 seconds but for Joi Play players it travels with them until they reset the game which makes the game well unplayable for them. 
I did add a temp fix that looks like this
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
but that just resets the sprites and seems to still relock them keeping them (or new ones) ghosting to the screen
If someone has an Idea for a fix let me know (I am using Essentials CSG v21.1 so a lot of my UI is different but its essentially pretty close to v21.1)
				
			I did add a temp fix that looks like this
			
				Ruby:
			
		
		
		class Scene_Map
  alias __ghosting_key_menu_update update
  def update
    __ghosting_key_menu_update
    if Input.triggerex?(82)   # R key
        @spriteset&.dispose
        instance_variable_set(:@spriteset, nil)
        RPG::Cache.clear  # Just in case
        GC.start   
        instance_variable_set(:@spriteset, Spriteset_Map.new)
        $game_map.need_refresh = true
        pbMessage(_INTL("Full reset and GC triggered."))
      end
    end
	but that just resets the sprites and seems to still relock them keeping them (or new ones) ghosting to the screen
If someone has an Idea for a fix let me know (I am using Essentials CSG v21.1 so a lot of my UI is different but its essentially pretty close to v21.1)