fixes touching minebots not changing combat mode (#80789)

## About The Pull Request

uhh touch with empty hand and off combat mode and they change combat
mode now

## Why It's Good For The Game

fixes #80584

## Changelog
🆑
fix: you can use your hand to make minebots go into combat mode again
/🆑
This commit is contained in:
jimmyl
2024-01-05 17:56:50 +00:00
committed by GitHub
parent 2a74b7afb1
commit dc3b21ed6d
@@ -118,10 +118,8 @@
return ..()
/mob/living/basic/mining_drone/attack_hand(mob/living/carbon/human/user, list/modifiers)
. = ..()
if(. || user.combat_mode)
return
if(user.combat_mode)
return ..()
set_combat_mode(!combat_mode)
balloon_alert(user, "now [combat_mode ? "attacking wildlife" : "collecting loose ore"]")