Fix "touche à tout" passive not working as inteneded on intiative rolls.

This commit is contained in:
Thomas Andres Gomez 2023-09-18 16:04:05 +02:00
parent 5fe6cd0c01
commit bdc3b19989

View file

@ -92,42 +92,6 @@ class AlterationParser @Inject constructor(
}
companion object {
private val COLUMNS
get() = listOf(
Property.HIT_POINT.key,
Property.ARMOR_CLASS.key,
Property.STRENGTH.key,
Property.DEXTERITY.key,
Property.CONSTITUTION.key,
Property.INTELLIGENCE.key,
Property.WISDOM.key,
Property.CHARISMA.key,
Property.STRENGTH_SAVING_THROW.key,
Property.DEXTERITY_SAVING_THROW.key,
Property.CONSTITUTION_SAVING_THROW.key,
Property.INTELLIGENCE_SAVING_THROW.key,
Property.WISDOM_SAVING_THROW.key,
Property.CHARISMA_SAVING_THROW.key,
Property.ACROBATICS.key,
Property.ANIMAL_HANDLING.key,
Property.ARCANA.key,
Property.ATHLETICS.key,
Property.DECEPTION.key,
Property.HISTORY.key,
Property.INSIGHT.key,
Property.INTIMIDATION.key,
Property.INVESTIGATION.key,
Property.MEDICINE.key,
Property.NATURE.key,
Property.PERCEPTION.key,
Property.PERFORMANCE.key,
Property.PERSUASION.key,
Property.RELIGION.key,
Property.SLEIGHT_OF_HAND.key,
Property.STEALTH.key,
Property.SURVIVAL.key,
Property.ATTACK_ROLL.key,
Property.ATTACK_DAMAGE_ROLL.key,
)
private val COLUMNS get() = Property.values().map { it.key }
}
}