Code format for previous commit.
This commit is contained in:
@@ -321,22 +321,22 @@ public class RequestExEnchantItemAttribute implements IClientIncomingPacket
|
|||||||
case Stone:
|
case Stone:
|
||||||
case Roughore:
|
case Roughore:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_STONE);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_STONE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Crystal:
|
case Crystal:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Jewel:
|
case Jewel:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_JEWEL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_JEWEL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Energy:
|
case Energy:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_ENERGY);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_ENERGY;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GoD_Event:
|
case GoD_Event:
|
||||||
|
@@ -321,22 +321,22 @@ public class RequestExEnchantItemAttribute implements IClientIncomingPacket
|
|||||||
case Stone:
|
case Stone:
|
||||||
case Roughore:
|
case Roughore:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_STONE);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_STONE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Crystal:
|
case Crystal:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Jewel:
|
case Jewel:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_JEWEL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_JEWEL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Energy:
|
case Energy:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_ENERGY);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_ENERGY;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GoD_Event:
|
case GoD_Event:
|
||||||
|
@@ -321,22 +321,22 @@ public class RequestExEnchantItemAttribute implements IClientIncomingPacket
|
|||||||
case Stone:
|
case Stone:
|
||||||
case Roughore:
|
case Roughore:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_STONE);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_STONE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Crystal:
|
case Crystal:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Jewel:
|
case Jewel:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_JEWEL);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_JEWEL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Energy:
|
case Energy:
|
||||||
{
|
{
|
||||||
success = Rnd.get(100) < (Config.ENCHANT_CHANCE_ELEMENT_ENERGY);
|
success = Rnd.get(100) < Config.ENCHANT_CHANCE_ELEMENT_ENERGY;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GoD_Event:
|
case GoD_Event:
|
||||||
|
Reference in New Issue
Block a user