Skip to content

Commit

Permalink
set fluid task default to not consume (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
WaitingIdly authored Nov 4, 2024
1 parent 1bff72a commit 3296254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/betterquesting/questing/tasks/TaskFluid.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
public class TaskFluid implements ITaskInventory, IFluidTask, IItemTask {

private static final boolean DEFAULT_IGNORE_NBT = false;
private static final boolean DEFAULT_CONSUME = true;
private static final boolean DEFAULT_CONSUME = false;
private static final boolean DEFAULT_GROUP_DETECT = false;
private static final boolean DEFAULT_AUTO_CONSUME = false;
private final Set<UUID> completeUsers = new TreeSet<>();
Expand Down

0 comments on commit 3296254

Please sign in to comment.