1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-15 03:55:05 +01:00

Monks can jump for free.

This commit is contained in:
chris 2024-02-22 19:45:07 -05:00
parent 00ee702463
commit b407edaf04

View file

@ -2621,7 +2621,8 @@ int magic; /* 0=Physical, otherwise skill level */
teleds(cc.x, cc.y, TRUE);
nomul(-1, "jumping around");
nomovemsg = "";
morehungry(max_ints(1, rnd(25) * get_uhungersizemod()));
if(!Role_if(PM_MONK))
morehungry(max_ints(1, rnd(25) * get_uhungersizemod()));
return MOVE_STANDARD;
}
}