Active Coupon Buff

Added buff icons for active coupons the player has. Fixed a minor issue,
introduced on the last commit, that prevented coupons to become active
automatically.
This commit is contained in:
ronancpl
2017-05-30 23:28:31 -03:00
parent e1c95352c8
commit f30acb3b8a
40 changed files with 538 additions and 337 deletions

View File

@@ -1,4 +1,4 @@
#Tue, 30 May 2017 01:30:51 -0300
#Tue, 30 May 2017 13:56:57 -0300
C\:\\Nexon\\MapleSolaxia\\MapleSolaxiaV2\\MapleCouponInstaller=

View File

@@ -2,6 +2,8 @@
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group/>
<group>
<file>file:/C:/Nexon/MapleSolaxia/MapleSolaxiaV2/MapleCouponInstaller/src/maplecouponinstaller/MapleCouponInstaller.java</file>
</group>
</open-files>
</project-private>

View File

@@ -124,7 +124,7 @@ public class MapleCouponInstaller {
}
private static void processDayTimeString(String time) {
String day = time.substring(0, 2);
String day = time.substring(0, 3);
int d = getDayOfWeek(day);
activeDay |= (1 << d);