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
11 lines
136 B
Plaintext
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;
|
|
}
|