Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/com/wynncraft/AlgorithmRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import com.wynncraft.algorithms.TheFourthAlgorithm;
import com.wynncraft.algorithms.TheThirdAlgorithm;
import com.wynncraft.algorithms.SubtractiveBnBAlgorithm;
import com.wynncraft.algorithms.SubtractiveBnBV2Algorithm;
import com.wynncraft.algorithms.PrunedMaskAlgorithm;
import com.wynncraft.algorithms.PrunedMaskV2Algorithm;
import com.wynncraft.algorithms.StarvingGoblinAlgorithm;
Expand Down Expand Up @@ -55,6 +56,7 @@ public class AlgorithmRegistry {
register(new NegativeOrderAlgorithm(), WynnPlayer.Builder::new);
register(new PrunedMaskAlgorithm(), WynnPlayer.Builder::new);
register(new PrunedMaskV2Algorithm(), WynnPlayer.Builder::new);
register(new SubtractiveBnBV2Algorithm(), WynnPlayer.Builder::new);
register(new StarvingGoblinAlgorithm(), StarvingPlayer.Builder::new);
}

Expand Down
Loading