Fix proficiency bonus bug for RemarkableAthlete

This commit is contained in:
Matthew DeMartino
2021-05-24 20:56:45 -04:00
parent 37c61f6b4a
commit 9d4cea047f
+1 -1
View File
@@ -129,7 +129,7 @@ class Skill:
modifier += entity.proficiency_bonus // 2
elif entity.has_feature(RemarkableAthelete):
if self.ability_name.lower() in ("strength", "dexterity", "constitution"):
modifier += ceil(entity.proficienc_bonus / 2.0)
modifier += ceil(entity.proficiency_bonus / 2.0)
# Check for expertise
is_expert = self.skill_name in entity.skill_expertise