Skip to content

Commit

Permalink
Fixes doubling of gadget points for second+ synth
Browse files Browse the repository at this point in the history
  • Loading branch information
Katskan committed Jul 19, 2023
1 parent aef9629 commit c636d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/vending/vendor_types/crew/synthetic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list(
/obj/structure/machinery/cm_vending/own_points/experimental_tools/attackby(obj/item/W, mob/user)
if(istype(W, /obj/item/coin/marine/synth))
if(user.drop_inv_item_to_loc(W, src))
available_points = available_points + 45
available_points = available_points = 45
available_points_to_display = available_points
to_chat(user, SPAN_NOTICE("You insert \the [W] into \the [src]."))
return
Expand Down

0 comments on commit c636d79

Please sign in to comment.