Normalize credit comments

This commit is contained in:
ronancpl
2019-05-26 15:17:53 -03:00
parent bb80441af0
commit e02ede58da
52 changed files with 76 additions and 63 deletions

View File

@@ -2205,7 +2205,7 @@ public class MaplePacketCreator {
mplew.write(game.getGameType().getValue());
mplew.writeInt(game.getObjectId()); // gameid/shopid
mplew.writeMapleAsciiString(game.getDescription()); // desc
mplew.writeBool(!game.getPassword().isEmpty()); // password here, thanks GabrielSin!
mplew.writeBool(!game.getPassword().isEmpty()); // password here, thanks GabrielSin
mplew.write(game.getPieceType());
mplew.write(ammount);
mplew.write(2); //player capacity
@@ -2219,7 +2219,7 @@ public class MaplePacketCreator {
mplew.writeInt(hm.getObjectId());
mplew.writeMapleAsciiString(hm.getDescription());
mplew.write(hm.getItemId() % 100);
mplew.write(roomInfo); // visitor capacity here, thanks GabrielSin!
mplew.write(roomInfo); // visitor capacity here, thanks GabrielSin
}
public static byte[] updateHiredMerchantBox(MapleHiredMerchant hm) {

View File

@@ -17,7 +17,9 @@ import tools.data.output.MaplePacketLittleEndianWriter;
/**
* CField_Wedding, CField_WeddingPhoto, CWeddingMan, OnMarriageResult, and all Wedding/Marriage enum/structs.
*
* @author Eric edited by Drago/Dragohe4rt on Wishlist
* @author Eric
*
* Edited wishlists by -- Drago (Dragohe4rt)
*/
public class Wedding extends MaplePacketCreator {
private static final short MARRIAGE_REQUEST = 0x48;