Running a half-orc blackguard, I just ran into a C++ error
I think I was trying to cast "Maim Foe"
Version 4.2.1
					I think I was trying to cast "Maim Foe"
Version 4.2.1
static struct object *get_random_monster_object(struct monster *mon)
{
    struct object *obj, *pick = NULL;
    int i = 1;
    /* Pick a random object */
    for (obj = mon->held_obj; obj; obj = obj->next)
    {
        /* Check it isn't a quest artifact */
        if (obj->artifact && kf_has(obj->kind->kind_flags, KF_QUEST_ART))
            continue;
        if (one_in_(i)) pick = obj;
        i++;
    }
    return pick;
}
 
							
						spell:Thrust Away:40:12:90:40 effect:SHORT_BEAM:FORCE:1:10 dice:$Dd8 expr:D:PLAYER_LEVEL:+ 0 desc:Fires a short range beam of force.
spell:Thrust Away:40:12:90:40 effect:SHORT_BEAM:FORCE:1:10 dice:$Dd8 expr:D:PLAYER_LEVEL:+ 0 desc:Fires a short range beam of force.
Comment