oauto now takes shot

This commit is contained in:
Zeno Rogue 2023-08-14 20:24:05 +02:00
parent 44e9c3e317
commit 394f8052b4
1 changed files with 2 additions and 1 deletions

View File

@ -336,10 +336,11 @@ bool set_owner_auto() {
if(t0 && t1) o = Unowned;
else if(t0) o = 0;
else if(t1) o = 1;
else return true; /* all free */
else { go_message("all free!"); return true; } /* all free */
}
}
take_shot();
return true;
}