Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/hydroponics/grown/towercap.dm
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
return
if(!has_buckled_mobs() && do_after(user, 5 SECONDS, src))
for(var/I in 1 to 5)
var/obj/item/grown/log/L = new /obj/item/grown/log(src.loc)
var/obj/item/grown/log/L = new /obj/item/grown/log(loc)
L.pixel_x += rand(1,4)
L.pixel_y += rand(1,4)
if(can_buckle || grill)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/hydroponics/seeds.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
var/weed_rate = 1 //If the chance below passes, then this many weeds sprout during growth
var/weed_chance = 5 //Percentage chance per tray update to grow weeds

/obj/item/seeds/Initialize(mapload, loc, nogenes = 0)
/obj/item/seeds/Initialize(mapload, nogenes = 0)
. = ..()
pixel_x = rand(-8, 8)
pixel_y = rand(-8, 8)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/simple_animal/friendly/mouse.dm
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ GLOBAL_VAR_INIT(mouse_killed, 0)
if(istype(F, /obj/item/reagent_containers/food/snacks/royalcheese))
evolve()
if(istype(F, /obj/item/grown/bananapeel/bluespace))
var/obj/item/grown/bananapeel/bluespace/B
var/obj/item/grown/bananapeel/bluespace/B = F
var/teleport_radius = max(round(B.seed.potency / 10), 1)
var/turf/T = get_turf(src)
do_teleport(src, T, teleport_radius, channel = TELEPORT_CHANNEL_BLUESPACE)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/recycling/disposal/construction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
var/obj/pipe_type = /obj/structure/disposalpipe/segment
var/pipename

/obj/structure/disposalconstruct/Initialize(mapload, loc, _pipe_type, _dir = SOUTH, flip = FALSE, obj/make_from)
/obj/structure/disposalconstruct/Initialize(mapload, _pipe_type, _dir = SOUTH, flip = FALSE, obj/make_from)
. = ..()
if(make_from)
pipe_type = make_from.type
Expand Down
2 changes: 1 addition & 1 deletion yogstation/code/game/objects/items/crayons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
pre_noise = FALSE
post_noise = TRUE

/obj/item/toy/crayon/spraycan/gang/Initialize(mapload, loc, datum/team/gang/G)
/obj/item/toy/crayon/spraycan/gang/Initialize(mapload, datum/team/gang/G)
.=..()
if(G)
gang = G
Expand Down
4 changes: 2 additions & 2 deletions yogstation/code/game/objects/items/implants/implant_gang.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
desc = "Makes you a gangster."
var/datum/team/gang/gang

/obj/item/implant/gang/Initialize(mapload, loc, setgang)
/obj/item/implant/gang/Initialize(mapload, setgang)
.=..()
gang = setgang

Expand Down Expand Up @@ -53,7 +53,7 @@
/obj/item/implanter/gang
name = "implanter (gang)"

/obj/item/implanter/gang/Initialize(mapload, loc, gang)
/obj/item/implanter/gang/Initialize(mapload, gang)
if(!gang)
return INITIALIZE_HINT_QDEL
imp = new /obj/item/implant/gang(src,gang)
Expand Down