Icon smoothing fixes (#2624)

Fixes some issues with smoothing, including asteroid flooring losing its sprite for no apparent reason.
This commit is contained in:
Lohikar
2017-06-05 11:15:47 +03:00
committed by skull132
parent 6878459216
commit a28fbd1415
4 changed files with 17 additions and 26 deletions
+6 -6
View File
@@ -15,7 +15,8 @@
canSmoothWith = list(
/turf/simulated/mineral,
/turf/simulated/wall,
/turf/unsimulated/wall
/turf/unsimulated/wall,
/turf/simulated/shuttle
)
oxygen = 0
nitrogen = 0
@@ -491,20 +492,19 @@
// This means you can put grass on the asteroid etc.
/turf/simulated/floor/asteroid
name = "sand"
//icon = 'icons/turf/flooring/asteroid.dmi'
//icon_state = "asteroid"
icon = 'icons/turf/smooth/ash.dmi'
icon_state = "ash"
smooth = SMOOTH_MORE | SMOOTH_BORDER
canSmoothWith = list(
/turf/simulated/floor/asteroid,
/turf/simulated/mineral,
/turf/simulated/wall
/turf/simulated/wall,
/turf/simulated/shuttle
)
base_name = "sand"
base_desc = "Gritty and unpleasant."
base_icon = 'icons/turf/flooring/asteroid.dmi'
base_icon_state = "asteroid"
base_icon = 'icons/turf/smooth/ash.dmi'
base_icon_state = "ash"
initial_flooring = null
oxygen = 0