Skip to content

Commit

Permalink
fix: remove two unused vardecls (#26756)
Browse files Browse the repository at this point in the history
  • Loading branch information
warriorstar-orion authored Sep 11, 2024
1 parent 965b42b commit 716428d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/shards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/hydroponics/grown/towercap.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 716428d

Please sign in to comment.