diff --git a/code/datums/martial/rising_bass.dm b/code/datums/martial/rising_bass.dm
index d175322a7c..01b37c5c65 100644
--- a/code/datums/martial/rising_bass.dm
+++ b/code/datums/martial/rising_bass.dm
@@ -141,7 +141,7 @@
to_chat(usr, "You retreat inward and recall the teachings of the Rising Bass...")
to_chat(usr, "Side Kick: Disarm Harm. Forces opponent to step to the side.")
- to_chat(usr, "Shoulder Flip: Grab Harm Disarm Grab Grab. Flips opponent over your shoulder and stuns.")
+ to_chat(usr, "Shoulder Flip: Grab Harm Disarm Grab Harm Harm. Flips opponent over your shoulder and stuns.")
to_chat(usr, "Repulse Punch: Grab Harm Grab Harm. Slams the opponent far away from you.")
to_chat(usr, "Foot Smash: Harm Harm. Stuns opponent, minor damage.")
to_chat(usr, "Deft Switch: Grab Disarm Disarm. Switches the opponent's held item for your own. Most useful with nothing in your hand.")
diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm
index 1a5d26dc18..93f33c3a3d 100644
--- a/code/modules/mob/living/carbon/human/human_defense.dm
+++ b/code/modules/mob/living/carbon/human/human_defense.dm
@@ -48,7 +48,7 @@
if(mind)
if (mind.martial_art && mind.martial_art.dodge_chance)
if(!lying && dna && !dna.check_mutation(HULK))
- if(mind.martial_art.dodge_chance >= rand(0,100))
+ if(prob(mind.martial_art.dodge_chance))
var/dodgemessage = pick("dodges under the projectile!","dodges to the right of the projectile!","jumps over the projectile!")
visible_message("[src] [dodgemessage]", "You dodge the projectile!")
return -1