mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-02-05 17:30:16 +00:00
Krakens no longer destroy player boats in peaceful mode
This commit is contained in:
@@ -2981,7 +2981,7 @@ EX namespace kraken {
|
||||
attackMonster(c2, AF_NORMAL | AF_MSG, c->monst);
|
||||
sleep(c);
|
||||
}
|
||||
else for(int i=0; i<numplayers(); i++) if(playerpos(i) == c2) {
|
||||
else for(int i=0; i<numplayers(); i++) if(playerpos(i) == c2 && !peace::on) {
|
||||
if(isPlayerInBoatOn(c2, i)) {
|
||||
addMessage(XLAT("%The1 destroys your boat!", moKrakenH));
|
||||
dboat = true;
|
||||
|
||||
Reference in New Issue
Block a user