myilmaz / runuo

Automatically exported from code.google.com/p/runuo
0 stars 0 forks source link

OPL on UOR expansion lead to empty spellbook #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It is possible to enable the OPL with UOR expansion, but the server will send 
the wrong spellbook content and the client will not display any spell

To fix this issue, I just checked for AOS expansion OR OPL enabled setting

Scripts/Items/Skill Items/Magical/Spellbook.cs
line 548 (Revision 1072)

Change:
if ( Core.AOS )

To:
if ( Core.AOS || ObjectPropertyList.Enabled )

Original issue reported on code.google.com by felipe.t...@gmail.com on 5 Aug 2013 at 11:08