Skip to content

Commit

Permalink
Tell users about achievements that will randomize problems if used af…
Browse files Browse the repository at this point in the history
…ter the close date
  • Loading branch information
Alex-Jordan committed Dec 17, 2024
1 parent c43a105 commit 5799ccc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion lib/WeBWorK/AchievementItems/ExtendDueDate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ sub new ($class) {
return bless {
id => 'ExtendDueDate',
name => x('Tunic of Extension'),
description => x('Adds 24 hours to the close date of a homework.')
description => x(
'Adds 24 hours to the close date of a homework. '
. 'This will randomize problem details if used after the original close date.'
)
}, $class;
}

Expand Down
3 changes: 2 additions & 1 deletion lib/WeBWorK/AchievementItems/ReducedCred.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ sub new ($class) {
name => x('Ring of Reduction'),
description => x(
'Enable reduced scoring for a homework set. This will allow you to submit answers '
. 'for partial credit for 24 hours after the close date.'
. 'for partial credit for 24 hours after the close date. '
. 'This will randomize problem details if used after the original close date.'
)
}, $class;
}
Expand Down
5 changes: 4 additions & 1 deletion lib/WeBWorK/AchievementItems/SuperExtendDueDate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ sub new ($class) {
return bless {
id => 'SuperExtendDueDate',
name => x('Robe of Longevity'),
description => x('Adds 48 hours to the close date of a homework.')
description => x(
'Adds 48 hours to the close date of a homework. '
. 'This will randomize problem details if used after the original close date.'
)
}, $class;
}

Expand Down

0 comments on commit 5799ccc

Please sign in to comment.