Skip to content

Commit

Permalink
Better semantics for mulhours / muldays
Browse files Browse the repository at this point in the history
This breaks EditSurfare (which I never used).
  • Loading branch information
Drahflow committed Jun 2, 2014
1 parent 6f6874d commit 3c0da10
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -49,7 +49,7 @@ public int apply(int value, long t, FakeCalendar cal) {
if(r.start <= minutesSinceDayStart && minutesSinceDayStart < r.end) return value * multiplier / 1000;
}

return 0;
return value;
}
}

Expand All @@ -65,7 +65,7 @@ public int apply(int value, long t, FakeCalendar cal) {
return value * multiplier / 1000;
}

return 0;
return value;
}
}

Expand Down

0 comments on commit 3c0da10

Please sign in to comment.