Crossfire Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
CF: bug fix for cleric starting spells...
- To: crossfire (at) ifi.uio.no
- Subject: CF: bug fix for cleric starting spells...
- From: Brian Thomas <>
- Date: Thu, 18 Apr 1996 05:47:37 -0400
- Sender:
There seems to have been a change in the declaration of
start_prayers, so that cleric only starts w/ turn undead!
Change the line 477 in server/players.c from:
> op->stats.sp=start_prayers[RANDOM()%(sizeof(start_prayers)/sizeof(long))];
to
op->stats.sp=start_prayers[RANDOM()%(sizeof(start_prayers)/sizeof(uint8))];
This fixed the problem for me.
-b.t.