Merge pull request #11972 from Nightfirecat/slayer-plugin-use-higher-of-task-lengths-for-start
slayer: Update initial amount if current amount is higher
This commit is contained in:
@@ -730,7 +730,7 @@ public class SlayerPlugin extends Plugin
|
||||
{
|
||||
taskName = name;
|
||||
amount = amt;
|
||||
initialAmount = initAmt;
|
||||
initialAmount = Math.max(amt, initAmt);
|
||||
taskLocation = location;
|
||||
save();
|
||||
removeCounter();
|
||||
|
||||
Reference in New Issue
Block a user