mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Fix hardreset() not resetting all 100 slots in (custom)collect (#36)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user