Skip to content

Commit

Permalink
[MIRROR] Fix OPFOR bluescreen (#5203)
Browse files Browse the repository at this point in the history
* Fix OPFOR bluescreen (#4640)

fimx

i'm really running out of energy to write descriptive commit message

* [MIRROR] Fix OPFOR bluescreen

---------

Co-authored-by: FlufflesTheDog <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
3 people authored Nov 29, 2024
1 parent e597627 commit 705a392
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,8 @@
user.client?.admin_follow(mind_reference.current)

/datum/opposing_force/proc/set_equipment_count(mob/user, datum/opposing_force_selected_equipment/equipment, new_count)
var/sanitized_newcount = sanitize_integer(new_count, 1, equipment.opposing_force_equipment.max_amount)
equipment.count = new_count
var/sanitized_newcount = sanitize_integer(new_count, 1, equipment.opposing_force_equipment.max_amount, default = 1)
equipment.count = sanitized_newcount
add_log(user.ckey, "Set equipment '[equipment.opposing_force_equipment.name] count to [sanitized_newcount]")

/datum/opposing_force/proc/handle(mob/user)
Expand Down
4 changes: 2 additions & 2 deletions tgui/packages/tgui/interfaces/OpposingForcePanel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -509,11 +509,11 @@ export const EquipmentTab = (props) => {
buttons={
<>
<NumberInput
animated
value={equipment.count}
step={1}
minValue={1}
maxValue={5}
onChange={(e, value) =>
onChange={(value) =>
act('set_equipment_count', {
selected_equipment_ref: equipment.ref,
new_equipment_count: value,
Expand Down

0 comments on commit 705a392

Please sign in to comment.