Commit 4508dc0 Chomp
committed
1 parent 5c4d051 commit 4508dc0 Copy full SHA for 4508dc0
File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,10 @@ export class CircleOfCultistService {
260
260
Math . random ( ) <= circleConfig . bonusChanceMultiplier
261
261
) {
262
262
// Sacrifice amount is enough + passed 25% check to get hideout/task rewards
263
- result . time = circleConfig . hideoutTaskRewardTimeSeconds ;
263
+ result . time =
264
+ circleConfig . craftTimeOverride !== - 1
265
+ ? circleConfig . craftTimeOverride
266
+ : circleConfig . hideoutTaskRewardTimeSeconds ;
264
267
result . rewardType = CircleRewardType . HIDEOUT_TASK ;
265
268
266
269
return result ;
@@ -428,7 +431,7 @@ export class CircleOfCultistService {
428
431
// Prep rewards array (reward can be item with children, hence array of arrays)
429
432
const rewards : IItem [ ] [ ] = [ ] ;
430
433
431
- // Handle special case of tagilla helmets
434
+ // Handle special case of tagilla helmets - only one reward is allowed
432
435
if ( directReward . reward . includes ( ItemTpl . FACECOVER_TAGILLAS_WELDING_MASK_GORILLA ) ) {
433
436
directReward . reward = [ this . randomUtil . getArrayValue ( directReward . reward ) ] ;
434
437
}
You can’t perform that action at this time.
0 commit comments