On live reloads it seems like the precision of modulo is reduced, or something like that.
Essentially this code:
if(live_call()) return live_result;
show_debug_message(10000000000000001);
show_debug_message(10000000000000001 % 2);
Results in this debug output:
It seems to work normally with one less digit, but it does cause minor issues for fetching the digits of large binary numbers. Using the most recent version of GMLive!!