v0.0.3-alpha

This commit is contained in:
Rodrigo Gómez Maitret
2020-03-04 00:23:32 -06:00
parent d41796d450
commit de6989f838
90 changed files with 159 additions and 24 deletions

View File

@@ -13,6 +13,7 @@ switch(argument0)
case but.plus:
global.counter++;
global.countdata[global.selecting.idno] = global.counter;
savedata_write(savedata_section_get(global.show_shiny)+" Count", global.selecting.idno, global.counter);
change_add();
break;
@@ -21,6 +22,7 @@ switch(argument0)
if (global.counter > 0)
global.counter--;
global.countdata[global.selecting.idno] = global.counter;
savedata_write(savedata_section_get(global.show_shiny)+" Count", global.selecting.idno, global.counter);
change_add();
break;