mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-04 16:16:17 +03:00
Remove 'if (entities[i].state == 0) { }'
That's right, it's an if-conditional that does absolutely nothing. Classic.
This commit is contained in:
@@ -2192,9 +2192,6 @@ void entityclass::updateentities( int i )
|
|||||||
switch(entities[i].type)
|
switch(entities[i].type)
|
||||||
{
|
{
|
||||||
case 0: //Player
|
case 0: //Player
|
||||||
if (entities[i].state == 0)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 1: //Movement behaviors
|
case 1: //Movement behaviors
|
||||||
//Enemies can have a number of different behaviors:
|
//Enemies can have a number of different behaviors:
|
||||||
|
|||||||
Reference in New Issue
Block a user