diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm
index e0bbae1d2e..29e3e86caf 100644
--- a/code/modules/mob/living/silicon/pai/pai.dm
+++ b/code/modules/mob/living/silicon/pai/pai.dm
@@ -363,8 +363,11 @@
return
/mob/living/silicon/pai/attack_hand(mob/user as mob)
- visible_message("[user.name] boops [src] on the head.")
- close_up()
+ if(user.a_intent == I_HELP)
+ visible_message("[user.name] pats [src].")
+ else
+ visible_message("[user.name] boops [src] on the head.")
+ close_up()
//I'm not sure how much of this is necessary, but I would rather avoid issues.
/mob/living/silicon/pai/proc/close_up()