Wildly guess about how blob transmogrification might use the PRNG

This commit is contained in:
Eevee (Evelyn Woods) 2021-01-01 20:09:44 -07:00
parent 65535eaded
commit d77b25c7c1

View File

@ -1205,7 +1205,7 @@ const TILE_TYPES = {
else if (name === 'blob') { else if (name === 'blob') {
// TODO how is this randomness determined? important for replays! // TODO how is this randomness determined? important for replays!
let options = me.type._blob_mogrifications; let options = me.type._blob_mogrifications;
level.transmute_tile(other, options[Math.floor(Math.random() * options.length)]); level.transmute_tile(other, options[level.prng() % options.length]);
} }
}, },
on_power(me, level) { on_power(me, level) {