Correct html prefix for Raina.

Contributed by Dantolian.
This commit is contained in:
MobiusDev 2016-05-04 06:23:01 +00:00
parent ecdbe99d1c
commit 7b75dc9995

View File

@ -807,7 +807,7 @@ public final class Raina extends AbstractNpcAI
private NpcHtmlMessage getNpcHtmlMessage(L2PcInstance player, L2Npc npc, String fileName)
{
final NpcHtmlMessage html = new NpcHtmlMessage(npc.getObjectId());
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/ai/npc/Raina/" + fileName));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/ai/zones/TalkingIsland/Raina/" + fileName));
return html;
}