fix: remove two unused vardecls (#26756)

This commit is contained in:
warriorstar-orion
2024-09-11 18:01:52 +00:00
committed by GitHub
parent 965b42bf51
commit 716428dfbf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@
. = TRUE
if(!I.use_tool(src, user, volume = I.tool_volume))
return
var/obj/item/stack/sheet/new_glass = new welded_type(user.loc)
new welded_type(user.loc)
to_chat(user, "<span class='notice'>You add the newly-formed glass to the stack.</span>")
qdel(src)
+1 -1
View File
@@ -61,7 +61,7 @@
var/seed_modifier = 0
if(seed)
seed_modifier = round(seed.potency / 25)
var/obj/item/stack/plank = new plank_type(user.loc, 1 + seed_modifier)
new plank_type(user.loc, 1 + seed_modifier)
to_chat(user, "<span class='notice'>You add the newly-formed [plank_name] to the stack.</span>")
qdel(src)