Skip to content

Commit c205a45

Browse files
committedMar 6, 2025·
Forget about BS grass
1 parent e1281d0 commit c205a45

File tree

1 file changed

+2
-2
lines changed
  • crates/dmm-tools/src/render_passes

1 file changed

+2
-2
lines changed
 

‎crates/dmm-tools/src/render_passes/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ impl RenderPass for BandaStationMods {
576576
"/turf/open/genturf/",
577577
"/turf/closed/mineral/random/snow/",
578578
"/turf/closed/mineral/snowmountain/",
579-
"/turf/closed/mineral/random/labormineral/",
579+
"/turf/closed/mineral/random/labormineral/ice/",
580580
"/turf/open/floor/plating/snowed/icemoon/",
581581
"/turf/open/floor/plating/snowed/smoothed/",
582582
"/turf/open/lava/plasma/",
@@ -634,7 +634,7 @@ impl RenderPass for BandaStationMods {
634634
_objtree: &'a ObjectTree,
635635
_bump: &'a bumpalo::Bump,
636636
) {
637-
if atom.istype("/turf/simulated/floor/grass/") && !atom.get_path().contains("no_creep") {
637+
if atom.istype("/turf/simulated/floor/grass/") || atom.istype("/turf/open/misc/grass/") && !atom.get_path().contains("no_creep") {
638638
sprite.ofs_x -= 8;
639639
sprite.ofs_y -= 8;
640640
} else if atom.istype("/turf/closed/mineral/") {

0 commit comments

Comments
 (0)
Please sign in to comment.