Skip to content

Commit fe0fb2e

Browse files
committed
pr comments
1 parent e35bb5d commit fe0fb2e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/main/java/io/github/pylonmc/pylon/PylonFluids.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ private PylonFluids() {
247247

248248
public static final RebarFluid LIQUID_XP = new RebarFluid(
249249
pylonKey("liquid_xp"),
250-
Material.EXPERIENCE_BOTTLE
250+
Material.PURPLE_CONCRETE
251251
).addTag(FluidTemperature.NORMAL);
252252
static {
253253
LIQUID_XP.register();

src/main/java/io/github/pylonmc/pylon/content/machines/experience/LiquidXPBottle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public LiquidXPBottle(@NotNull ItemStack stack) {
2626

2727
public static class XPBottleListener implements Listener {
2828
@EventHandler
29-
public void onPlayerInteract(@NotNull ExpBottleEvent event) {
29+
public void onBottleBreak(@NotNull ExpBottleEvent event) {
3030
RebarItem item = RebarItem.fromStack(event.getEntity().getItem());
3131
if (!(item instanceof LiquidXPBottle bottle)) {
3232
return;

src/main/resources/recipes/minecraft/crafting_shaped.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2569,10 +2569,10 @@ pylon:experience_fountain_spout:
25692569
pylon:experience_fountain:
25702570
pattern:
25712571
- "BSB"
2572-
- "SCS"
2572+
- "SPS"
25732573
- "BSB"
25742574
key:
2575-
C: minecraft:end_crystal
2575+
P: minecraft:ender_pearl
25762576
B: pylon:covalent_binder
25772577
S: pylon:shimmer_bronze
25782578
result: pylon:experience_fountain
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
xp-drain-period-ticks: 5
22
xp-drain-amount: 10
33
xp-buffer-amount: 250
4-
conversion-ratio: 1.1 # How much liquid xp for each vanilla XP. If this is more than 1, the machine is profitable
4+
conversion-ratio: 1.0 # How much liquid xp for each vanilla XP. If this is more than 1, the machine is profitable

0 commit comments

Comments
 (0)