Quik update

This commit is contained in:
J. M. Ellis
2024-06-02 17:59:24 -07:00
parent 339f512e5d
commit d7f84ce34a
2 changed files with 22 additions and 10 deletions
+7 -1
View File
@@ -126,8 +126,14 @@ namespace LunaLightXMG
}
}
platforms.Add(new Platform(new Vector2(x, y + 4), 16, 16));
if (x + 16 < 288)
{
for (int j = 1; j < 3; j++)
{
platforms.Add(new Platform(new Vector2(x + (j*16), y + 4), 16, 16));
}
}
}
return platforms;
}
}