/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/modules/shuttles/bagel.dm
29 строк
885 B
ShiftyRail
Moves around a bunch of stuff in the codebase. Add a file explaining the general structure of the codebase. (#37568)
19 май 2025, 16:41
Не верифицирован
19 май 2025, 16:41
1e1de9e
Код
Авторство
О чём код?
var/datum/shuttle/bagel/bagel_shuttle = new(starting_area = /area/shuttle/bagel) /datum/shuttle/bagel name = "bagel ferry" can_link_to_computer = LINK_FREE destroy_everything = TRUE // So that it can replace part of maintenance. Possibly a terrible idea? /datum/shuttle/bagel/initialize() . = ..() add_dock(/obj/docking_port/destination/bagel_aftstarboard) add_dock(/obj/docking_port/destination/bagel_foreport) /obj/machinery/computer/shuttle_control/bagel/New() link_to(bagel_shuttle) ..() /obj/docking_port/destination/bagel_aftstarboard areaname = "aft starboard" base_turf_override = TRUE base_turf_type = /turf/simulated/floor/plating refill_area = /area/maintenance/asmaint /obj/docking_port/destination/bagel_foreport areaname = "fore port" base_turf_override = TRUE base_turf_type = /turf/simulated/floor/plating refill_area = /area/maintenance/fpmaint