diff --git a/code/datums/martial/kaza_ruk.dm b/code/datums/martial/kaza_ruk.dm
index c70624369cd..5dc043c3ac9 100644
--- a/code/datums/martial/kaza_ruk.dm
+++ b/code/datums/martial/kaza_ruk.dm
@@ -41,9 +41,11 @@
var/datum/martial_art/source = target
if (source.streak == "neck_chop")
owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.")
+ owner.balloon_alert(owner, "cleared")
source.streak = ""
else
owner.visible_message(span_danger("[owner] assumes the Neck Chop stance!"), "Your next attack will be a Neck Chop.")
+ owner.balloon_alert(owner, "neck chop")
source.streak = "neck_chop"
/datum/action/low_sweep
@@ -60,9 +62,11 @@
var/datum/martial_art/source = target
if (source.streak == "low_sweep")
owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.")
+ owner.balloon_alert(owner, "cleared")
source.streak = ""
else
owner.visible_message(span_danger("[owner] assumes the Low Sweep stance!"), "Your next attack will be a Low Sweep.")
+ owner.balloon_alert(owner, "low sweep")
source.streak = "low_sweep"
/datum/action/lung_punch//referred to internally as 'quick choke'
@@ -79,9 +83,11 @@
var/datum/martial_art/source = target
if (source.streak == "quick_choke")
owner.visible_message(span_danger("[owner] assumes a neutral stance."), "Your next attack is cleared.")
+ owner.balloon_alert(owner, "cleared")
source.streak = ""
else
owner.visible_message(span_danger("[owner] assumes the Lung Punch stance!"), "Your next attack will be a Lung Punch.")
+ owner.balloon_alert(owner, "lung punch")
source.streak = "quick_choke"//internal name for lung punch
/datum/martial_art/kaza_ruk/activate_style(mob/living/new_holder)