mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 00:23:29 +01:00
fix fusion gauntlets failing to deploy (#27946)
This commit is contained in:
committed by
GitHub
parent
264c305705
commit
3d2d73048e
@@ -864,7 +864,7 @@
|
||||
if(on_cooldown)
|
||||
to_chat(user, "<span class='notice'>[src] is on cooldown!</span>")
|
||||
return
|
||||
if(!user.drop_l_hand() || !user.drop_r_hand())
|
||||
if((user.l_hand && !user.drop_l_hand()) || (user.r_hand && !user.drop_r_hand()))
|
||||
to_chat(user, "<span class='notice'>[src] are unable to deploy the blades with the items in your hands!</span>")
|
||||
return
|
||||
var/obj/item/W = new /obj/item/pyro_claws
|
||||
|
||||
Reference in New Issue
Block a user