Replacements for using minimal and maximal words.
This commit is contained in:
@@ -3493,8 +3493,8 @@ public class Config
|
||||
SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false);
|
||||
SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1);
|
||||
SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57);
|
||||
SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000);
|
||||
SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000);
|
||||
SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000);
|
||||
SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000);
|
||||
SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15);
|
||||
|
||||
// Load ServerTime config file (if exists)
|
||||
|
@@ -139,7 +139,7 @@ public class GeoEngine
|
||||
|
||||
/**
|
||||
* Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation.
|
||||
* @param size : pre-calculated minimal required size
|
||||
* @param size : pre-calculated minimum required size
|
||||
* @return NodeBuffer : buffer
|
||||
*/
|
||||
private NodeBuffer getBuffer(int size)
|
||||
|
@@ -102,7 +102,7 @@ public class ArmorSet
|
||||
}
|
||||
|
||||
/**
|
||||
* The list of skills that are activated when set reaches it's minimal equipped items condition
|
||||
* The list of skills that are activated when set reaches it's minimum equipped items condition
|
||||
* @return
|
||||
*/
|
||||
public List<ArmorsetSkillHolder> getSkills()
|
||||
|
@@ -1767,7 +1767,7 @@ public class Quest extends AbstractScript implements IIdentifiable
|
||||
|
||||
/**
|
||||
* @param player the player whose language settings to use in finding the html of the right language
|
||||
* @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.."
|
||||
* @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.."
|
||||
*/
|
||||
public static String getNoQuestLevelRewardMsg(Player player)
|
||||
{
|
||||
|
@@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket
|
||||
packet.writeH(_list.size()); // list length
|
||||
for (SeedProduction s : _list)
|
||||
{
|
||||
packet.writeC(0); // mask item 0 to print minimal item information
|
||||
packet.writeC(0); // mask item 0 to print minimum item information
|
||||
packet.writeD(s.getId()); // ObjectId
|
||||
packet.writeD(s.getId()); // ItemId
|
||||
packet.writeC(0xFF); // T1
|
||||
|
Reference in New Issue
Block a user