Skip to content

Commit

Permalink
Make fakes impossible to hit
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Oct 14, 2019
1 parent 90077b9 commit 140af60
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Etterna/Actor/Gameplay/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2121,6 +2121,10 @@ Player::Step(int col,
pTN->type != TapNoteType_Lift)
return;

// Fakes.
if (pTN->type == TapNoteType_Fake)
return;

switch (m_pPlayerState->m_PlayerController) {
case PC_HUMAN:
switch (pTN->type) {
Expand Down

0 comments on commit 140af60

Please sign in to comment.