mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 04:09:16 +00:00
ads-game:: no more fire while paused
This commit is contained in:
parent
b75bb20246
commit
37ab1b523d
@ -120,7 +120,7 @@ bool ads_turn(int idelta) {
|
||||
vector<int> ap;
|
||||
for(int i=0; i<NUMACT; i++) if(a[i]) ap.push_back(i);
|
||||
|
||||
if(a[16+4] && !la[16+4]) fire();
|
||||
if(a[16+4] && !la[16+4] && !paused) fire();
|
||||
if(a[16+5] && !la[16+5]) {
|
||||
paused = !paused;
|
||||
if(paused) {
|
||||
|
Loading…
Reference in New Issue
Block a user