Make return after sell to prevent doing 2 things at once

This commit is contained in:
2024-07-25 20:19:35 +02:00
parent 3c38165208
commit 7d346397e2

View File

@@ -225,10 +225,12 @@ public static class MultiSelectPatches
if (shiftDown && altDown) {
SellAllToFlea();
return false;
}
if (shiftDown && ctrlDown) {
SellAllToTrader();
return false;
}
if (ctrlDown && !shiftDown && !altDown)