diff --git a/maps/tether/submaps/offmap/talon.dm b/maps/tether/submaps/offmap/talon.dm index 88687040097..f2a41a04701 100644 --- a/maps/tether/submaps/offmap/talon.dm +++ b/maps/tether/submaps/offmap/talon.dm @@ -41,12 +41,10 @@ var/global/list/latejoin_talon = list() initial_generic_waypoints = list("talon_fore", "talon_aft", "talon_port", "talon_starboard") initial_restricted_waypoints = list("Talon's boat" = list("offmap_spawn_talonboat"), "Talon lifeboat" = list("offmap_spawn_talon_lifeboat")) - -/obj/effect/overmap/visitable/ship/talon/get_skybox_representation() - var/image/I = image('talon.dmi', "skybox") - I.pixel_x = 270 - I.pixel_y = 60 - return I + skybox_icon = 'talon.dmi' + skybox_icon_state = "skybox" + skybox_pixel_x = 270 + skybox_pixel_y = 60 // The shuttle's 'shuttle' computer /obj/machinery/computer/shuttle_control/explore/talonboat diff --git a/maps/tether/submaps/offmap/talon.dmi b/maps/tether/submaps/offmap/talon.dmi index 3fc94975496..bf2498a803a 100644 Binary files a/maps/tether/submaps/offmap/talon.dmi and b/maps/tether/submaps/offmap/talon.dmi differ diff --git a/maps/tether/submaps/om_ships/aro.dm b/maps/tether/submaps/om_ships/aro.dm index f4f02676627..a927ffed0d2 100644 --- a/maps/tether/submaps/om_ships/aro.dm +++ b/maps/tether/submaps/om_ships/aro.dm @@ -51,11 +51,10 @@ initial_generic_waypoints = list("aronai_fore", "aronai_aft", "aronai_port", "aronai_starboard") initial_restricted_waypoints = list("Aro's Ship's Boat" = list("omship_spawn_aroboat")) -/obj/effect/overmap/visitable/ship/aro/get_skybox_representation() - var/image/I = image('aro.dmi', "skybox") - I.pixel_x = 120 - I.pixel_y = 120 - return I + skybox_icon = 'aro.dmi' + skybox_icon_state = "skybox" + skybox_pixel_x = 120 + skybox_pixel_y = 120 // The shuttle's 'shuttle' computer /obj/machinery/computer/shuttle_control/explore/aroboat diff --git a/maps/tether/submaps/om_ships/aro2.dm b/maps/tether/submaps/om_ships/aro2.dm index dfee0a6b42a..8f9af760230 100644 --- a/maps/tether/submaps/om_ships/aro2.dm +++ b/maps/tether/submaps/om_ships/aro2.dm @@ -63,11 +63,10 @@ initial_restricted_waypoints = list("Aro's Boat" = list("omship_spawn_aroboat2")) fore_dir = EAST -/obj/effect/overmap/visitable/ship/aro2/get_skybox_representation() - var/image/I = image('aro2.dmi', "skybox") - I.pixel_x = 80 - I.pixel_y = 100 - return I + skybox_icon = 'aro2.dmi' + skybox_icon_state = "skybox" + skybox_pixel_x = 80 + skybox_pixel_y = 100 // The shuttle's 'shuttle' computer /obj/machinery/computer/shuttle_control/explore/aroboat2 diff --git a/maps/tether/submaps/om_ships/cruiser.dm b/maps/tether/submaps/om_ships/cruiser.dm index ea539c9ef3f..b99e121f3f7 100644 --- a/maps/tether/submaps/om_ships/cruiser.dm +++ b/maps/tether/submaps/om_ships/cruiser.dm @@ -132,8 +132,7 @@ vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("cruiser_fore", "cruiser_aft", "cruiser_port", "cruiser_starboard", "ws_port_dock_1", "ws_port_dock_2", "ws_starboard_dock_1", "ws_starboard_dock_2") -/obj/effect/overmap/visitable/ship/cruiser/get_skybox_representation() - var/image/I = image('cruiser.dmi', "skybox") - I.pixel_x = 370 - I.pixel_y = 370 - return I \ No newline at end of file + skybox_icon = 'cruiser.dmi' + skybox_icon_state = "skybox" + skybox_pixel_x = 370 + skybox_pixel_y = 370