Quellcode durchsuchen

Little correction to last commit.

Ahmed vor 17 Jahren
Ursprung
Commit
4c3ea83a24

+ 2 - 0
L2_GameServer_T1/java/net/sf/l2j/gameserver/model/quest/QuestState.java

@@ -822,8 +822,10 @@ public final class QuestState
 	{
 		String text = HtmCache.getInstance().getHtm("data/scripts/quests/255_Tutorial/"+ html);
 		if(text == null)
+		{
 			_log.warning("missing html page data/scripts/quests/255_Tutorial/"+html);
 			text = "<html><body>File data/scripts/quests/255_Tutorial/" + html + " not found or file is empty.</body></html>";
+		}
 		getPlayer().sendPacket(new TutorialShowHtml(text));
 	}