Skip to content

Commit

Permalink
Fuck you codacy, fixes an issue with buttons not getting called.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxIsJoe committed Apr 11, 2021
1 parent 00ae2ee commit a7d2ca6
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,12 @@ public void SubSaveBodyPart(BodyPart bodyPart, string path)
//SAVE & CANCEL BUTTONS:
//------------------

public async Task OnApplyBtn()
public void OnApplyBtn()
{
OnApplyBtnLogic();
}

private async Task OnApplyBtnLogic()
{
StartCoroutine(SaveCurrentCharacterSnaps());

Expand Down

0 comments on commit a7d2ca6

Please sign in to comment.