Known issues: Difference between revisions
From Dragon Realm Wiki
No edit summary |
No edit summary |
||
| Line 4: | Line 4: | ||
* <strike>Tetsuo's skills are not the same as Xephon's - even though they're both priests. Spells are somehow granted upon leveling, but Tetsuo is not getting all of the same spells.</strike> | * <strike>Tetsuo's skills are not the same as Xephon's - even though they're both priests. Spells are somehow granted upon leveling, but Tetsuo is not getting all of the same spells.</strike> | ||
** This was caused by Tetsuo not having a 'class' defined (should have been deathpriest). Resolved by set_class("deathpriest") | ** This was caused by Tetsuo not having a 'class' defined (should have been deathpriest). Resolved by set_class("deathpriest") | ||
* Severing of limbs removes gear / unwields weapons, but does not remove stat/skill bonuses, allowing bonuses to be stacked. Fix will be to remove bonuses in: | |||
** <code>/std/living/body.c::check_on_limb()</code> | |||
** <code>/std/living/body.c::add_limb()</code> | |||
== Non-Critical Issues == | == Non-Critical Issues == | ||
Revision as of 15:20, 14 July 2020
Critical Issues
Sindarin's strength went from 80 to 77 somehow when improving other stats.- Temporarily resolved by set_stat("strength", 80)
Tetsuo's skills are not the same as Xephon's - even though they're both priests. Spells are somehow granted upon leveling, but Tetsuo is not getting all of the same spells.- This was caused by Tetsuo not having a 'class' defined (should have been deathpriest). Resolved by set_class("deathpriest")
- Severing of limbs removes gear / unwields weapons, but does not remove stat/skill bonuses, allowing bonuses to be stacked. Fix will be to remove bonuses in:
/std/living/body.c::check_on_limb()/std/living/body.c::add_limb()
Non-Critical Issues
General
- Hunger does not appear to have any impact.
Workarounds In Place
- Colleens store had an issue with the FOOD variable defined in lanark.h. Worked around this issue by replacing instances of FOOD with "/d/tradewinds/lanark/objs/food/".
