Includes the check for pickup preference in grabstep

This commit is contained in:
Heroman
2021-03-07 08:01:30 +10:00
parent 2937982aca
commit 96bef781bf
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -310,8 +310,8 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2
tail = pred.tail_style
if(a_intent == I_GRAB)
// You can only grab prey if you have no shoes on.
if(pred.shoes)
// You can only grab prey if you have no shoes on. And both of you are cool with it.
if(pred.shoes || !(pickup_pref && tmob.pickup_pref))
message_pred = "You step down onto [prey], squishing them and forcing them down to the ground!"
message_prey = "[pred] steps down and squishes you with their foot, forcing you down to the ground!"
if(tail)