Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes list for the vehicle computer. [NO GAMEPLAY EFFECT] #4902

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions code/game/supplyshuttle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1331,9 +1331,9 @@ var/datum/controller/supply/supply_controller = new()
. = ..()

vehicles = list(
/datum/vehicle_order/apc,
/datum/vehicle_order/apc/med,
/datum/vehicle_order/apc/cmd,
new /datum/vehicle_order/apc(),
new /datum/vehicle_order/apc/med(),
new /datum/vehicle_order/apc/cmd(),
Comment on lines +1334 to +1336
Copy link
Contributor

@Birdtalon Birdtalon Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you instantiate these here it can't also be done again below as this causes runtimes on mapload.

for(var/order as anything in vehicles)
new order

)

for(var/order as anything in vehicles)
Expand Down
Loading