Editing Weapons
Editing Maps
Similarly, maps can be edited in the maps.js file. Each map is represented by an object with name and img fields. You can customize maps by adding or changing objects within this array.
Example snippet from maps.js:
const maps = [
{
name: "Cargo",
img: "cargo.png"
},
{
name: "Bank",
img: "bank.png"
},
];
As with maps, ensure that the image file for each map is stored in the html/images/ folder and properly referenced by the img field.
