You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
/// 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");
|