Skip to content

Commit c779e37

Browse files
authored
Merge pull request #510 from pylonmc/balugaq/fix/508
Fix #508
2 parents 9175953 + 311b6ec commit c779e37

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • pylon-core/src/main/kotlin/io/github/pylonmc/pylon/core/content/fluid

pylon-core/src/main/kotlin/io/github/pylonmc/pylon/core/content/fluid/FluidPipe.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ open class FluidPipe(stack: ItemStack) : PylonItem(stack), PylonInteractor {
107107
FluidPipePlacementService.startConnection(player, FluidPipePlacementPoint.PointDisplay(pylonBlock.fluidIntersectionDisplay), this)
108108
} else {
109109
// This pipe does not match the pipe we right clicked
110-
player.sendActionBar(Component.translatable("pylon.pylonbase.message.pipe.not_of_same_type"))
110+
player.sendActionBar(Component.translatable("pylon.pyloncore.message.pipe.not_of_same_type"))
111111
}
112112
return true
113113
}
@@ -118,7 +118,7 @@ open class FluidPipe(stack: ItemStack) : PylonItem(stack), PylonInteractor {
118118
FluidPipePlacementService.startConnection(player, FluidPipePlacementPoint.Section(pylonBlock), this)
119119
} else {
120120
// This pipe does not match the pipe we right clicked
121-
player.sendActionBar(Component.translatable("pylon.pylonbase.message.pipe.not_of_same_type"))
121+
player.sendActionBar(Component.translatable("pylon.pyloncore.message.pipe.not_of_same_type"))
122122
}
123123
return true
124124
}

0 commit comments

Comments
 (0)