diff --git a/code/_onclick/hud/parallax.dm b/code/_onclick/hud/parallax.dm index 23bd53b8b..7b4a1d1ac 100644 --- a/code/_onclick/hud/parallax.dm +++ b/code/_onclick/hud/parallax.dm @@ -170,12 +170,13 @@ L.transform = newtransform - animate(L, transform = matrix(), time = T, loop = -1, flags = ANIMATION_END_NOW) + animate(L, transform = L.transform, time = 0, loop = -1, flags = ANIMATION_END_NOW) + animate(transform = matrix(), time = T) /datum/hud/proc/update_parallax() var/client/C = mymob.client var/turf/posobj = get_turf(C.eye) - if(!posobj) + if(!posobj) return var/area/areaobj = posobj.loc @@ -341,7 +342,7 @@ //Layenia parallaxes /obj/screen/parallax_layer/layenia - icon_state = null + icon_state = null blend_mode = BLEND_OVERLAY absolute = TRUE speed = 0.6 diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index c2a0aad98..80216c03a 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -121,7 +121,7 @@ gender = PLURAL desc = "Clouds as far as the eye can see... Watch your step." icon = 'icons/turf/space.dmi' - icon_state = "clouds" + icon_state = "cloud" plane = PLANE_SPACE tiled_dirt = FALSE baseturfs = /turf/open/chasm/cloud @@ -132,10 +132,8 @@ /turf/open/chasm/cloud/Initialize() . = ..() - icon_state = SPACE_ICON_STATE /turf/open/chasm/cloud/get_smooth_underlay_icon(mutable_appearance/underlay_appearance, turf/asking_turf, adjacency_dir) underlay_appearance.icon = 'icons/turf/space.dmi' - underlay_appearance.icon_state = SPACE_ICON_STATE underlay_appearance.plane = PLANE_SPACE return TRUE diff --git a/icons/turf/space.dmi b/icons/turf/space.dmi index e7440c023..d6cc85e07 100644 Binary files a/icons/turf/space.dmi and b/icons/turf/space.dmi differ