4
0
Fork 0
WolfBox/scripts/werewolf/night_actions/murder_night_action.gd

8 lines
211 B
GDScript

extends PickPlayerAction
class_name MurderAction
func execute_with_target(user: WolfPlayer, target: WolfPlayer) -> bool:
if !super.execute_with_target(user, target):
return false
return target.murder(user)