Thank you for the bug report.
Run this command to add compatibility with Krastorio 2's vehicle equipment. Run it before the first drop pod lands. You don't need to run it again.
/c local r, b, c, d, l;
d = true;
l = {};
r = {["personal-roboport-mk2-equipment"] = "kr-vehicle-roboport-equipment"};
b = remote.call("bravest-new-world-scenario-config", "get_bot_spawner_equipment");
for _,a in ipairs(b) do if r[a.item] then a.item = r[a.item] end end;
for _,a in ipairs(b) do if a.item == "kr-vehicle-roboport-equipment" then if d then d = false; l[#l + 1] = a end else l[#l + 1] = a; end end
remote.call("bravest-new-world-scenario-config", "set_bot_spawner_equipment", l)
b = remote.call("bravest-new-world-scenario-config", "get_misc_settings");
b.bot_spawner_fuel.name = "kr-fuel";
b = remote.call("bravest-new-world-scenario-config", "set_misc_settings", b);