Skip to content

Commit

Permalink
fixes lathe grammar in insert item (#5690)
Browse files Browse the repository at this point in the history
  • Loading branch information
silicons authored Jul 13, 2023
1 parent dd05fef commit 0453f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/lathes/lathe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@

/obj/machinery/lathe/proc/insert_item(obj/item/I, mob/user)
if(LAZYLEN(stored_items) >= items_max)
user.action_feedback(SPAN_WARNING("[src] can't hold [items_max && "more"] items for machining."), src)
user.action_feedback(SPAN_WARNING("[src] can't hold [items_max? "any more" : ""]items for machining."), src)
return FALSE
if(!isnull(user))
if(user.is_in_inventory(I) && !user.transfer_item_to_loc(I, src))
Expand Down

0 comments on commit 0453f5e

Please sign in to comment.