You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// reset_map()
|
|
writelog("Reset map start");
|
|
i = 0;
|
|
repeat (80) {
|
|
j = 0;
|
|
repeat (80) {
|
|
writelog("Resetting " + string(i) + "," + string(j));
|
|
global.map[i, j] = "0";
|
|
global.dmap[i, j] = 0;
|
|
j += 1;
|
|
}
|
|
i += 1;
|
|
}
|
|
writelog("Reset map end");
|