probably fix uninitialized thing in VIBR, might spend longer later messing with d4zk1tty's fuzzer script

This commit is contained in:
jacob1 2016-04-02 01:04:13 -04:00
parent 21e3a50096
commit 0b1ffbcfd6

View File

@ -80,9 +80,9 @@ int Element_VIBR::update(UPDATE_FUNC_ARGS) {
else //if it is exploding
{
//Release sparks before explode
rndstore = rand();
if (parts[i].life < 300)
{
rndstore = rand();
rx = rndstore%3-1;
ry = (rndstore>>2)%3-1;
rndstore = rndstore >> 4;