Updating credits & missing aliases

This commit is contained in:
ronancpl
2019-12-13 02:35:26 -03:00
parent c7048a09ac
commit 183017ca3b
11 changed files with 13 additions and 13 deletions

View File

@@ -34,7 +34,7 @@ public final class FaceExpressionHandler extends AbstractMaplePacketHandler {
int emote = slea.readInt();
if (emote > 7) {
int itemid = 5159992 + emote; // thanks Rajan (Darter) for reporting unchecked emote itemid
int itemid = 5159992 + emote; // thanks RajanGrewal (Darter) for reporting unchecked emote itemid
if (!ItemConstants.isFaceExpression(itemid) || chr.getInventory(ItemConstants.getInventoryType(itemid)).findById(itemid) == null) {
return;
}

View File

@@ -49,7 +49,7 @@ public final class MobDamageMobFriendlyHandler extends AbstractMaplePacketHandle
return;
}
int damage = Randomizer.nextInt(((monster.getMaxHp() / 13 + monster.getPADamage() * 10)) * 2 + 500) / 10; //Beng's formula.
int damage = Randomizer.nextInt(((monster.getMaxHp() / 13 + monster.getPADamage() * 10)) * 2 + 500) / 10; // Formula planned by Beng.
if (monster.getHp() - damage < 1) { // friendly dies
if(monster.getId() == 9300102) {

View File

@@ -51,7 +51,7 @@ public final class PlayerMapTransitionHandler extends AbstractMaplePacketHandler
chr.announce(MaplePacketCreator.giveBuff(1, beaconid, stat));
}
if (!chr.isHidden()) { // thanks Lame for noticing hidden characters controlling mobs
if (!chr.isHidden()) { // thanks Lame (Conrad) for noticing hidden characters controlling mobs
for (MapleMapObject mo : chr.getMap().getMonsters()) { // thanks BHB, IxianMace, Jefe for noticing several issues regarding mob statuses (such as freeze)
MapleMonster m = (MapleMonster) mo;
if (m.getSpawnEffect() == 0 || m.getHp() < m.getMaxHp()) { // avoid effect-spawning mobs

View File

@@ -466,7 +466,7 @@ public final class RingActionHandler extends AbstractMaplePacketHandler {
case 9:
try {
// By -- Drago (Dragohe4rt)
// By -- Dragoso (Drago)
// Groom and Bride's Wishlist
MapleCharacter player = c.getPlayer();