Skip to content

Commit

Permalink
Fix nano-fabricator (goonstation#22253)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlameArrow57 authored Feb 9, 2025
1 parent a17a49a commit a8d91cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/modules/materials/Mat_Fabrication.dm
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,7 @@
var/howMany = input(usr, "How many ([maxAmt] max)?", "Select amount", maxAmt)
if(howMany > maxAmt || !selectedRecipe) return //ZeWaka: Fix for null.canBuild
if(selectedRecipe.canBuild(howMany, src))
SPAWN(2.5 SECONDS)
selectedRecipe.build(howMany, src)
selectedRecipe.build(howMany, src)
var/list/parts = list()
for(var/datum/matfab_part/P in selectedRecipe.required_parts)
if(P.assigned)
Expand Down

0 comments on commit a8d91cf

Please sign in to comment.