diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2018-01-17 11:41:31 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2018-01-17 11:41:31 +0100 |
| commit | a9daa029db68962603905eded0e29c2a2e2abd91 (patch) | |
| tree | 8c17edcbc99e393a923e6f90ac16e929457776a3 /Penguloon/Levels | |
| parent | f03a7cf3e3beab8964cd142ce64fd6dc3cd0735f (diff) | |
Mute sound button
Diffstat (limited to 'Penguloon/Levels')
| -rw-r--r-- | Penguloon/Levels/LevelBase.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Penguloon/Levels/LevelBase.cs b/Penguloon/Levels/LevelBase.cs index 93622c5..7d67d70 100644 --- a/Penguloon/Levels/LevelBase.cs +++ b/Penguloon/Levels/LevelBase.cs @@ -159,6 +159,8 @@ namespace Penguloon.Levels private void CheckForObjectSelect(TouchLocation[] touchLocations) { + if (ParentScene.UpgradeMenu.SellConfirmationBox.State == IngameOptionsState.Show) return; + bool found = false; for (int i = 0; i < touchLocations.Length; i++) { |
