Skip to content

Commit

Permalink
Fixes Biodome Linters + Other Linters (Bubberstation#609)
Browse files Browse the repository at this point in the history
Fixes Biodome Linters
  • Loading branch information
BurgerLUA authored Oct 14, 2023
1 parent c3f22b6 commit 39c4519
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 19 deletions.
47 changes: 29 additions & 18 deletions _maps/map_files/biodome/biodome.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -28720,6 +28720,15 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
"keb" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
},
/turf/open/floor/wood,
/area/station/cargo/lobby)
"keE" = (
/obj/machinery/door/poddoor/massdriver_chapel,
/turf/open/floor/plating,
Expand Down Expand Up @@ -45154,7 +45163,10 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/wood,
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
},
/turf/open/floor/iron,
/area/station/cargo/lobby)
"pDc" = (
/obj/effect/turf_decal/stripes/line{
Expand Down Expand Up @@ -57481,7 +57493,6 @@
/area/station/tcommsat/computer)
"tOq" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/turf_decal/siding/wood{
dir = 1
},
Expand Down Expand Up @@ -179699,11 +179710,11 @@ ovE
ovE
ovE
ovE
uyB
uyB
uyB
uyB
rAn
rPl
rPl
rPl
rPl
rPl
lwE
tOq
eNx
Expand Down Expand Up @@ -179956,13 +179967,13 @@ ovE
ovE
ovE
ovE
xdO
rPl
hKx
wvs
kYd
rAn
rPl
wmS
pnK
keb
xHE
rSu
aQu
Expand Down Expand Up @@ -180213,11 +180224,11 @@ ovE
ovE
ovE
ovE
xdO
rPl
rBK
pGf
jPq
rAn
rPl
dbk
pnK
qRD
Expand Down Expand Up @@ -180470,11 +180481,11 @@ ovE
ovE
ovE
ovE
xdO
rPl
nFH
udh
iSW
rAn
rPl
lNN
pnK
wlo
Expand Down Expand Up @@ -180727,7 +180738,7 @@ ovE
ovE
ovE
ovE
xdO
rPl
xIV
ryH
qxn
Expand Down Expand Up @@ -180984,7 +180995,7 @@ ovE
ovE
ovE
ovE
xdO
rPl
gss
hEf
fOX
Expand Down Expand Up @@ -181241,11 +181252,11 @@ ovE
ovE
ovE
ovE
xdO
rPl
mWE
mWE
mWE
rRv
rPl
heE
jGE
tAN
Expand Down
3 changes: 2 additions & 1 deletion code/game/objects/effects/spawners/random/random.dm
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@

if(radius >= 0)
for(var/turf/turf_in_view in view(radius, get_turf(src)))
if(isclosedturf(turf_in_view) || (isgroundlessturf(turf_in_view) && !GET_TURF_BELOW(turf_in_view)))
//if(isclosedturf(turf_in_view) || (isgroundlessturf(turf_in_view) && !GET_TURF_BELOW(turf_in_view))) BUBBERSTATION CHANGE: REMOVES BAD CODE THAT SPAWNED THINGS IN OPENTURFS.
if(isclosedturf(turf_in_view) || isgroundlessturf(turf_in_view)) //BUBBERSTATION CHANGE: ADDS GOOD CODE.
continue
scatter_locations += turf_in_view

Expand Down
3 changes: 3 additions & 0 deletions modular_zubbers/code/modules/hydroponics/plant_genes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
/datum/plant_gene/reagent
mutability_flags = PLANT_GENE_REMOVABLE | PLANT_GENE_MUTATABLE | PLANT_GENE_GRAFTABLE

/datum/plant_gene/trait/backfire
mutability_flags = PLANT_GENE_GRAFTABLE //Making this mutatable causes bugs and linters to fail.

/*
* Returns the formatted name of the plant gene.
*
Expand Down

0 comments on commit 39c4519

Please sign in to comment.