Ralts said: THere is an oddity we've noticed. When you set the attack matrix, close the character sheet, then open it, sometimes it has reset to the bards/0-level humans" entry instead of the character class you JUST set. Level stays just fine. There shouldn't be any "resetting"... The drop-down looks like this (note there are two options that have value="2"); <select class="width-fill border" name="attr_matrix_class" title="@{matrix_class}"> <option value="0" selected>Select a Class or Monster</option> <option value="1">Clerics, Druids and Monks</option> <option value="2">Fighters, Paladins, Rangers,</option> <option value="2">Bards, & 0-lvl Halflings & Humans</option> <option value="3">Magic-Users and Illusionists</option> <option value="4">Thieves and Assassins</option> <option value="5">Monsters</option> </select> as David mentioned, the option for "Fighters, Paladins, Rangers," and the "Bards, & 0-lvl Halflings & Humans" option are actually the same programmatically. I could combine the two lines like so; <option value="2">Fighters, Paladins, Rangers, Bards, & 0-lvl Halflings & Humans</option> but that results in a very wide selector which I felt did not look right. It also only displays the first half of the option's text, even if your desire was something from the last half of the text. ;-( I'll see if I can come up with a better solution so that it's less confusing.