Skip to content

Commit 0422b76

Browse files
Add more room trades
1 parent 1fc8868 commit 0422b76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/me/eccentric_nz/TARDIS/planets/GallifreyBlueprintTrade.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
package me.eccentric_nz.TARDIS.planets;
1818

1919
import com.google.common.collect.Multimaps;
20-
import me.eccentric_nz.TARDIS.ARS.TARDISARS;
2120
import me.eccentric_nz.TARDIS.TARDIS;
2221
import me.eccentric_nz.TARDIS.TARDISConstants;
2322
import me.eccentric_nz.TARDIS.blueprints.BlueprintConsole;
2423
import me.eccentric_nz.TARDIS.blueprints.BlueprintRoom;
25-
import me.eccentric_nz.TARDIS.enumeration.Desktops;
2624
import me.eccentric_nz.TARDIS.utility.ComponentUtils;
2725
import me.eccentric_nz.TARDIS.utility.TARDISStringUtils;
2826
import net.kyori.adventure.text.Component;
@@ -88,9 +86,11 @@ public MerchantRecipe getConsole() {
8886
}
8987

9088
private List<MerchantRecipe> getRandomRecipes() {
91-
MerchantRecipe roomRecipe = getRoom();
89+
MerchantRecipe room1Recipe = getRoom();
90+
MerchantRecipe room2Recipe = getRoom();
91+
MerchantRecipe room3Recipe = getRoom();
9292
MerchantRecipe consoleRecipe = getConsole();
93-
return List.of(roomRecipe, consoleRecipe);
93+
return List.of(room1Recipe, room2Recipe, room3Recipe, consoleRecipe);
9494
}
9595

9696
private ItemStack buildResult(String perm, String name) {

0 commit comments

Comments
 (0)