Skip to content

Commit

Permalink
tweak: replace droppods with teleports (#723)
Browse files Browse the repository at this point in the history
## About The Pull Request

Заменяем еще пачку дропподов на телепорт. Смерть дропподам

## Why It's Good For The Game

Дропподы нарушают атмосферу

## Changelog

:cl:
code: Заменяем еще пачку дропподов на телепорт
/:cl:
  • Loading branch information
Gaxeer authored Nov 15, 2024
1 parent b7e4d98 commit 84bc035
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/market.dm
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ SUBSYSTEM_DEF(market)
if(SHIPPING_METHOD_SUPPLYPOD)
var/obj/structure/closet/supplypod/spawned_pod = podspawn(list(
"target" = get_turf(purchase.uplink),
"path" = /obj/structure/closet/supplypod/back_to_station,
"path" = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: "path" = /obj/structure/closet/supplypod/back_to_station,
))
purchase.entry.spawn_item(spawned_pod, purchase)

Expand Down
2 changes: 1 addition & 1 deletion code/datums/station_traits/negative_traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@
/area/station/medical/virology,
"NT Virology Department",
force = TRUE,
force_pod_type = /obj/structure/closet/supplypod/centcompod,
force_pod_type = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: force_pod_type = /obj/structure/closet/supplypod/centcompod,
)

//Disables radstorms, they don't really make sense since we already have the nebula causing storms
Expand Down
2 changes: 1 addition & 1 deletion code/datums/station_traits/positive_traits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
var/area/bar_area = pick(GLOB.bar_areas)
podspawn(list(
"target" = pick(bar_area.contents),
"path" = /obj/structure/closet/supplypod/centcompod,
"path" = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: "path" = /obj/structure/closet/supplypod/centcompod,
"spawn" = list(
pizza_type_to_spawn,
/obj/item/reagent_containers/cup/glass/bottle/beer = 6
Expand Down
2 changes: 1 addition & 1 deletion code/game/machinery/roulette_machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
/obj/item/roulette_wheel_beacon/proc/launch_payload()
podspawn(list(
"target" = drop_location(),
"path" = /obj/structure/closet/supplypod/centcompod,
"path" = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: "path" = /obj/structure/closet/supplypod/centcompod,
"spawn" = /obj/machinery/roulette
))

Expand Down
2 changes: 1 addition & 1 deletion code/modules/admin/admin.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ ADMIN_VERB(spawn_atom_pod, R_SPAWN, "PodSpawn", "Spawn an atom via supply drop."
else
var/obj/structure/closet/supplypod/pod = podspawn(list(
"target" = target_turf,
"path" = /obj/structure/closet/supplypod/centcompod,
"path" = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: "path" = /obj/structure/closet/supplypod/centcompod,
))
//we need to set the admin spawn flag for the spawned items so we do it outside of the podspawn proc
var/atom/A = new chosen(pod)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/shuttle/supply.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list(

podspawn(list(
"target" = get_turf(home),
"path" = /obj/structure/closet/supplypod/centcompod,
"path" = /obj/structure/closet/supplypod/teleporter, // BANDASTATION EDIT - Original: "path" = /obj/structure/closet/supplypod/centcompod,
"spawn" = stuff_to_send_home,
))

Expand Down

0 comments on commit 84bc035

Please sign in to comment.