I’m building a custom character sheet with drag-and-drop support for a compendium category.     When I have a compendium category named "Monsters" and the corresponding HTML uses:      <div class="compendium-drop-target monsters">  …it works perfectly — I can drag a monster entry from the compendium, and it creates a character sheet as expected.  However, in my game I don’t have “monsters”; I have creatures like wolves, bears, and horses, and it seems strange to have them in a Monsters category in the compendium. So I renamed the category to "Beasts" in the compendium, and updated the HTML to:      <div class="compendium-drop-target beasts">  Now, when I drag a beast from the compendium, it comes in as a handout instead of a character sheet.  Is "monsters" a reserved keyword for the compendium-drop-target class? Is there any way to use a custom category like "beasts" and still get proper drag-and-drop behavior? 
 
				
			