Merge pull request #117 from stm2/mallorncursemessage

mallorn spell used wrong error message
This commit is contained in:
Enno Rehling 2015-01-29 21:58:43 +01:00
commit 633a356928
1 changed files with 2 additions and 2 deletions

View File

@ -1044,11 +1044,11 @@ static int sp_mallorn(castorder * co)
unit *mage = co->magician.u; unit *mage = co->magician.u;
if (!fval(r->terrain, LAND_REGION)) { if (!fval(r->terrain, LAND_REGION)) {
cmistake(mage, co->order, 290, MSG_MAGIC); cmistake(mage, co->order, 186, MSG_MAGIC);
return 0; return 0;
} }
if (fval(r, RF_MALLORN)) { if (fval(r, RF_MALLORN)) {
cmistake(mage, co->order, 291, MSG_MAGIC); cmistake(mage, co->order, 191, MSG_MAGIC);
return 0; return 0;
} }