Skip to content

Commit

Permalink
the thing
Browse files Browse the repository at this point in the history
Not sure about the argument formatting but at least it's not over 200 characters long.
  • Loading branch information
SabreML committed Dec 23, 2023
1 parent 6f7c06c commit 40289a8
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

/datum/action/xeno_action/onclick/set_hugger_reserve/use_ability(atom/Atom)
var/mob/living/carbon/xenomorph/carrier/carrier = owner
carrier.huggers_reserved = tgui_input_number(usr, "How many facehuggers would you like to keep safe from Observers wanting to join as facehuggers?", "How many to reserve?", 0, carrier.huggers_max, carrier.huggers_reserved)
carrier.huggers_reserved = tgui_input_number(usr,
"How many facehuggers would you like to keep safe from Observers wanting to join as facehuggers?",
"How many to reserve?",
carrier.huggers_reserved, carrier.huggers_max, 0
)
to_chat(carrier, SPAN_XENONOTICE("We reserve [carrier.huggers_reserved] facehuggers for ourself."))
return ..()

0 comments on commit 40289a8

Please sign in to comment.