Code format for space before comments.
This commit is contained in:
@@ -133,7 +133,7 @@ public class AdminMonsterRace implements IAdminCommandHandler
|
||||
// MonsterRace.getInstance().newSpeeds();
|
||||
// int[][] speeds2 = MonsterRace.getInstance().getSpeeds();
|
||||
/*
|
||||
* int[] speed = new int[8]; for (int i=0; i<8; i++) { for (int j=0; j<20; j++) { //_log.info("Adding "+speeds1[i][j] +" and "+ speeds2[i][j]); speed[i] += (speeds1[i][j]*1);// + (speeds2[i][j]*1); } LOGGER.info("Total speed for "+(i+1)+" = "+speed[i]); }
|
||||
* int[] speed = new int[8]; for (int i=0; i<8; i++) { for (int j=0; j<20; j++) { //_log.info("Adding "+speeds1[i][j] +" and "+ speeds2[i][j]); speed[i] += (speeds1[i][j]*1); // + (speeds2[i][j]*1); } LOGGER.info("Total speed for "+(i+1)+" = "+speed[i]); }
|
||||
*/
|
||||
|
||||
final MonRaceInfo spk = new MonRaceInfo(codes[2][0], codes[2][1], MonsterRace.getInstance().getMonsters(), MonsterRace.getInstance().getSpeeds());
|
||||
|
@@ -874,7 +874,7 @@ public class CrystalCaverns extends AbstractInstance
|
||||
final CCWorld world = (CCWorld) tmpworld;
|
||||
if ((world.getStatus() == 0) && world.oracle.contains(npc))
|
||||
{
|
||||
return "32281.htm";// TODO: Missing HTML.
|
||||
return "32281.htm"; // TODO: Missing HTML.
|
||||
}
|
||||
}
|
||||
npc.showChatWindow(player);
|
||||
|
@@ -382,7 +382,7 @@ public class Kamaloka extends AbstractInstance
|
||||
public int index; // 0-18 index of the kama type in arrays
|
||||
public int shaman = 0; // objectId of the shaman
|
||||
public List<Spawn> firstRoom; // list of the spawns in the first room (excluding shaman)
|
||||
public List<Integer> secondRoom;// list of objectIds mobs in the second room
|
||||
public List<Integer> secondRoom; // list of objectIds mobs in the second room
|
||||
public int miniBoss = 0; // objectId of the miniboss
|
||||
public Npc boss = null; // boss
|
||||
}
|
||||
|
@@ -71,7 +71,7 @@ public class Q00257_TheGuardIsBusy extends Quest
|
||||
MONSTERS.put(20006, Arrays.asList(new MobDrop(10, 2, ORC_AMULET, 2), new MobDrop(10, 10, ORC_AMULET, 1))); // Orc Archer
|
||||
MONSTERS.put(20093, Arrays.asList(new MobDrop(100, 85, ORC_NECKLACE, 1))); // Orc Fighter
|
||||
MONSTERS.put(20096, Arrays.asList(new MobDrop(100, 95, ORC_NECKLACE, 1))); // Orc Fighter Sub Leader
|
||||
MONSTERS.put(20098, Arrays.asList(new MobDrop(100, 100, ORC_NECKLACE, 1)));// Orc Fighter Leader
|
||||
MONSTERS.put(20098, Arrays.asList(new MobDrop(100, 100, ORC_NECKLACE, 1))); // Orc Fighter Leader
|
||||
MONSTERS.put(20130, Arrays.asList(new MobDrop(10, 7, ORC_AMULET, 1))); // Orc
|
||||
MONSTERS.put(20131, Arrays.asList(new MobDrop(10, 9, ORC_AMULET, 1))); // Orc Grunt
|
||||
MONSTERS.put(20132, Arrays.asList(new MobDrop(10, 7, WEREWOLF_FANG, 1))); // Werewolf
|
||||
|
@@ -152,7 +152,7 @@ public class Q00296_TarantulasSpiderSilk extends Quest
|
||||
{
|
||||
giveAdena(talker, (silk * 30) + (silk >= 10 ? 2000 : 0), true);
|
||||
takeItems(talker, TARANTULA_SPIDER_SILK, -1);
|
||||
Q00281_HeadForTheHills.giveNewbieReward(talker);// TODO: It's using wrong bitmask, need to create a general bitmask for this using EnumIntBitmask class inside Quest class for handling Quest rewards.
|
||||
Q00281_HeadForTheHills.giveNewbieReward(talker); // TODO: It's using wrong bitmask, need to create a general bitmask for this using EnumIntBitmask class inside Quest class for handling Quest rewards.
|
||||
html = "30519-05.html";
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user