diff --git a/code/game/turfs/open/lava.dm b/code/game/turfs/open/lava.dm index d910171554e..d7bf9ab13c8 100644 --- a/code/game/turfs/open/lava.dm +++ b/code/game/turfs/open/lava.dm @@ -182,8 +182,9 @@ name = "lava" baseturfs = /turf/open/lava/smooth icon = 'icons/turf/floors/lava.dmi' - icon_state = "unsmooth" - smoothing_flags = SMOOTH_CORNERS | SMOOTH_BORDER + icon_state = "lava-255" + base_icon_state = "lava" + smoothing_flags = SMOOTH_BITMASK | SMOOTH_BORDER smoothing_groups = list(SMOOTH_GROUP_TURF_OPEN, SMOOTH_GROUP_FLOOR_LAVA) canSmoothWith = list(SMOOTH_GROUP_FLOOR_LAVA) diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index 40f0750cc53..2ce498c4164 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -1094,7 +1094,7 @@ GLOBAL_LIST_INIT(hallucination_list, list( name = "lava" /obj/effect/hallucination/danger/lava/show_icon() - image = image('icons/turf/floors/lava.dmi',src,"smooth",TURF_LAYER) + image = image('icons/turf/floors/lava.dmi', src, "lava-0", TURF_LAYER) if(target.client) target.client.images += image diff --git a/icons/turf/floors/lava.dmi b/icons/turf/floors/lava.dmi index e4a276c001d..3b889c9a5f6 100644 Binary files a/icons/turf/floors/lava.dmi and b/icons/turf/floors/lava.dmi differ