Don't like ads? PRO users don't see any ads ;-)
Guest

Typo on Olympiad config file

By: a guest on Aug 5th, 2012  |  syntax: Diff  |  size: 1.18 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ### Eclipse Workspace Patch 1.0
  2. #P L2J_Server_BETA
  3. Index: java/com/l2jserver/gameserver/model/olympiad/Olympiad.java
  4. ===================================================================
  5. --- java/com/l2jserver/gameserver/model/olympiad/Olympiad.java  (revision 5547)
  6. +++ java/com/l2jserver/gameserver/model/olympiad/Olympiad.java  (working copy)
  7. @@ -59,7 +59,7 @@
  8.         protected static L2FastList<StatsSet> _heroesToBe;
  9.         private static final TIntIntHashMap _noblesRank = new TIntIntHashMap();
  10.        
  11. -       private static final String OLYMPIAD_DATA_FILE = "config/olympiad.properties";
  12. +       private static final String OLYMPIAD_DATA_FILE = "config/Olympiad.properties";
  13.         public static final String OLYMPIAD_HTML_PATH = "data/html/olympiad/";
  14.         private static final String OLYMPIAD_LOAD_DATA = "SELECT current_cycle, period, olympiad_end, validation_end, " + "next_weekly_change FROM olympiad_data WHERE id = 0";
  15.         private static final String OLYMPIAD_SAVE_DATA = "INSERT INTO olympiad_data (id, current_cycle, " + "period, olympiad_end, validation_end, next_weekly_change) VALUES (0,?,?,?,?,?) " + "ON DUPLICATE KEY UPDATE current_cycle=?, period=?, olympiad_end=?, " + "validation_end=?, next_weekly_change=?";