Files
AM2R-Community-Updates/scripts/show_all_map.gml
2020-12-22 20:54:55 -06:00

11 lines
136 B
Plaintext

/// show_all_map()
i = 0;
repeat (80) {
j = 0;
repeat (80) {
global.dmap[i, j] = 1;
j += 1;
}
i += 1;
}