mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-05-02 11:16:35 -05:00
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
///show_shiny_toggle()
|
|
function show_shiny_toggle() {
|
|
window_set_cursor(cr_hourglass);
|
|
|
|
global.show_shiny = !global.show_shiny
|
|
|
|
savedata_write("Display", "Shiny Mode", global.show_shiny);
|
|
|
|
room_restart();
|
|
|
|
|
|
}
|