Skip to content
Snippets Groups Projects
Commit 8b32df6d authored by Nos's avatar Nos
Browse files

BETA: Fixing bypass validation for `PlayerHelp` and `Book` htmls it should...

BETA: Fixing bypass validation for `PlayerHelp` and `Book` htmls it should have been enabled for them.
    * Patch by: FBIagent
parent e94607f4
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,6 @@ public class PlayerHelp implements IBypassHandler ...@@ -64,7 +64,6 @@ public class PlayerHelp implements IBypassHandler
} }
html.setFile(activeChar.getHtmlPrefix(), "data/html/help/" + cmd[0]); html.setFile(activeChar.getHtmlPrefix(), "data/html/help/" + cmd[0]);
html.disableValidation();
activeChar.sendPacket(html); activeChar.sendPacket(html);
} }
catch (Exception e) catch (Exception e)
......
...@@ -54,7 +54,6 @@ public class Book implements IItemHandler ...@@ -54,7 +54,6 @@ public class Book implements IItemHandler
{ {
final NpcHtmlMessage itemReply = new NpcHtmlMessage(0, item.getId()); final NpcHtmlMessage itemReply = new NpcHtmlMessage(0, item.getId());
itemReply.setHtml(content); itemReply.setHtml(content);
itemReply.disableValidation();
activeChar.sendPacket(itemReply); activeChar.sendPacket(itemReply);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment