Skip to content

Commit

Permalink
Fixed wrong operator usage in 2 scripts
Browse files Browse the repository at this point in the history
If those fixes are wrong blame it on me!
  • Loading branch information
Lemongrass3110 committed Aug 4, 2016
1 parent d017e24 commit a855bcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion npc/other/arena/arena_aco.txt
Expand Up @@ -1086,7 +1086,7 @@ prt_are_in,25,31,3 script Staff#aco-2 67,{
set .@hour_endaco, .@end_timeaco / 10000;
set .@min_endaco, ((.@end_timeaco % 10000) / 100);
set .@sec_endaco, .@end_timeaco % 100;
if ((.@hour_startaco == 23) & (.@hour_endaco == 0)) {
if ((.@hour_startaco == 23) && (.@hour_endaco == 0)) {
set .@hour_endaco,24;
}
set .@st_to_secaco, ((.@hour_startaco * 3600) + (.@min_startaco * 60) + (.@sec_startaco));
Expand Down
2 changes: 1 addition & 1 deletion npc/quests/quests_13_2.txt
Expand Up @@ -2772,7 +2772,7 @@ manuk,252,116,3 script Manuk Galtun#ep13_2day 450,{
else if (ep13_2_days01 == 1) {
set .@qst_cpl01,checkquest(7074,HUNTING);
set .@qst_cpl02,checkquest(7075,HUNTING);
if ((.@qst_cpl01 == 2) & (.@qst_cpl02 == 2)) {
if ((.@qst_cpl01 == 2) && (.@qst_cpl02 == 2)) {
mes "[Strom]";
mes "Sure enough... I, the Sapha Galtun, Strom, apologize to you. I should not have been so quick to despise you.";
mes "I admit that you are a brave soldier, please feel free to visit Manuk.";
Expand Down

0 comments on commit a855bcc

Please sign in to comment.