mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
Merge pull request #20 from CarsonKompon/fix-space-soccer-z-and-x
You can now Press and Release Z for high-kick-toe
This commit is contained in:
commit
c002586488
1 changed files with 2 additions and 2 deletions
|
@ -275,7 +275,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer
|
||||||
|
|
||||||
if (player)
|
if (player)
|
||||||
{
|
{
|
||||||
if (PlayerInput.AltPressed())
|
if (PlayerInput.Pressed() || PlayerInput.AltPressed())
|
||||||
{
|
{
|
||||||
Kick(false, true);
|
Kick(false, true);
|
||||||
}
|
}
|
||||||
|
@ -288,7 +288,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer
|
||||||
|
|
||||||
if (player)
|
if (player)
|
||||||
{
|
{
|
||||||
if (PlayerInput.AltPressedUp())
|
if (PlayerInput.PressedUp() || PlayerInput.AltPressedUp())
|
||||||
{
|
{
|
||||||
if (state.perfect)
|
if (state.perfect)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue