1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-13 17:06:52 +00:00

fixed a crash in princess AI when pathq is empty

This commit is contained in:
Zeno Rogue 2020-12-25 06:07:58 +01:00
parent fd715d4057
commit 2a0ef4f30b

View File

@ -149,6 +149,7 @@ struct princess_ai {
void princess_ai::run() {
int radius = toggle_radius(waOpenPlate);
if(pathq.empty()) return;
int d = pathq.back()->pathdist;
if(d == PINFD - 1) return;
d++;