G
Guest
Guest
Archived from groups: rec.games.roguelike.misc (More info?)
Hello Darshan,
Since the Darshan Patch series seems to be skipping along a lot faster than
the main branch, I'd like to ask if your next patch release could include the
following change to misc.cc:
if (!player_equip( EQ_BODY_ARMOUR, ARM_STEAM_DRAGON_ARMOUR ))
{
mpr("It doesn't seem to affect you.");
return;
}
-->
if (player_equip( EQ_BODY_ARMOUR, ARM_STEAM_DRAGON_ARMOUR ))
{
mpr("It doesn't seem to affect you.");
return;
}
Unless I'm considerably more ignorant than I think I am, this should fix the
problems with steam resistance being turned on its head. Which would be cool
-- one more feasible armor in the light-dragon-armors department, and a neat
new way to die horribly when not wearing one. (Did I just write that?)
Erik
Hello Darshan,
Since the Darshan Patch series seems to be skipping along a lot faster than
the main branch, I'd like to ask if your next patch release could include the
following change to misc.cc:
if (!player_equip( EQ_BODY_ARMOUR, ARM_STEAM_DRAGON_ARMOUR ))
{
mpr("It doesn't seem to affect you.");
return;
}
-->
if (player_equip( EQ_BODY_ARMOUR, ARM_STEAM_DRAGON_ARMOUR ))
{
mpr("It doesn't seem to affect you.");
return;
}
Unless I'm considerably more ignorant than I think I am, this should fix the
problems with steam resistance being turned on its head. Which would be cool
-- one more feasible armor in the light-dragon-armors department, and a neat
new way to die horribly when not wearing one. (Did I just write that?)
Erik