Skip to content

Commit

Permalink
Merge pull request Civ13#2848 from savethetreez/campaign-fix
Browse files Browse the repository at this point in the history
Operation Falcon: BMD-2 fix, adds the CV90 to the Dutch
  • Loading branch information
savethetreez authored May 19, 2024
2 parents a1608d8 + 87b32df commit a7d4258
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion civ13.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1158,5 +1158,5 @@
#include "code\processes\lighting\sources.dm"
#include "interface\interface.dm"
#include "interface\skin.dmf"
#include "maps\campaign\campaign1.dmm"
#include "maps\1943\smallingrad.dmm"
// END_INCLUDE
5 changes: 4 additions & 1 deletion code/modules/1713/computers/programs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2058,6 +2058,7 @@

var/list/dutch_choice = list(
"2A6 Leopard Tank (1000)",
"CV90 IFV (800)",
"Mercedes-Benz Jeep with MG (400)",
"DAF YA-4442 Supply Truck (300)",
"Mercedes-Benz Jeep (200)",
Expand Down Expand Up @@ -2245,6 +2246,8 @@
switch (href_list["vehiclegiver"])
if ("2A6 Leopard Tank (1000)")
PV = new /obj/effects/premadevehicles/tank/leopard2a6(locate(origin.x+3,origin.y-5,origin.z))
if ("CV90 IFV (800)")
PV = new /obj/effects/premadevehicles/apc/cv90(locate(origin.x+3,origin.y-5,origin.z))
if ("Mercedes-Benz Jeep with MG (400)")
PV = new /obj/effects/premadevehicles/car/mercedes/mg(locate(origin.x+3,origin.y-5,origin.z))
if ("DAF YA-4442 Supply Truck (300)")
Expand All @@ -2255,7 +2258,7 @@
if ("T-90A Tank (1200)")
PV = new /obj/effects/premadevehicles/tank/t90a(locate(origin.x+3,origin.y-5,origin.z))
if ("BMD-2 IFV (900)")
PV = new /obj/structure/vehicleparts/axis/heavy/bmd2(locate(origin.x+3,origin.y-5,origin.z))
PV = new /obj/effects/premadevehicles/apc/bmd2(locate(origin.x+3,origin.y-5,origin.z))
if ("BTR-80 APC (700)")
PV = new /obj/effects/premadevehicles/apc/btr80(locate(origin.x+3,origin.y-5,origin.z))
if ("Tigr-M Humvee with MG (400)")
Expand Down

0 comments on commit a7d4258

Please sign in to comment.