Sync with L2jServer HighFive Jul 3rd 2015.
This commit is contained in:
@ -65,7 +65,8 @@ public class DateRange
|
||||
|
||||
public boolean isWithinRange(Date date)
|
||||
{
|
||||
return date.after(_startDate) && date.before(_endDate);
|
||||
return (date.equals(_startDate) || date.after(_startDate)) //
|
||||
&& (date.equals(_endDate) || date.before(_endDate));
|
||||
}
|
||||
|
||||
public Date getEndDate()
|
||||
|
Reference in New Issue
Block a user