mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix hardreset() not resetting all 100 slots in (custom)collect (#36)
This commit is contained in:
parent
f4767ce18b
commit
441955de5f
2 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ Contributors
|
||||||
* Elliott Saltar (@eboyblue3)
|
* Elliott Saltar (@eboyblue3)
|
||||||
* Marvin Scholz (@ePirat)
|
* Marvin Scholz (@ePirat)
|
||||||
* Elijah Stone
|
* Elijah Stone
|
||||||
|
* Info Teddy (@InfoTeddy)
|
||||||
* Emmanuel Vadot (@evadot)
|
* Emmanuel Vadot (@evadot)
|
||||||
* Rémi Verschelde (@akien-mga)
|
* Rémi Verschelde (@akien-mga)
|
||||||
* viri (viri.me)
|
* viri (viri.me)
|
||||||
|
|
|
@ -3536,7 +3536,7 @@ void scriptclass::hardreset( KeyPoll& key, Graphics& dwgfx, Game& game,mapclass&
|
||||||
obj.customcrewmoods[i]=1;
|
obj.customcrewmoods[i]=1;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < 20; i++)
|
for (i = 0; i < 100; i++)
|
||||||
{
|
{
|
||||||
obj.collect[i] = 0;
|
obj.collect[i] = 0;
|
||||||
obj.customcollect[i] = 0;
|
obj.customcollect[i] = 0;
|
||||||
|
|
Loading…
Reference in a new issue