Skip to content

Commit bee0d6b

Browse files
committed
remove super
1 parent 88c55d1 commit bee0d6b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/kotlin/dev/aaronhowser/mods/geneticsresequenced/block/BioluminescenceBlock.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ class BioluminescenceBlock :
3232
pMovedByPiston: Boolean
3333
) {
3434
pLevel.scheduleTick(pPos, this, ServerConfig.CONFIG.bioluminescenceDuration.get())
35-
super.onPlace(pState, pLevel, pPos, pOldState, pMovedByPiston)
3635
}
3736

3837
override fun tick(pState: BlockState, pLevel: ServerLevel, pPos: BlockPos, pRandom: RandomSource) {
3938
if (pLevel.getBlockState(pPos).`is`(this)) {
4039
pLevel.removeBlock(pPos, false)
4140
}
42-
super.tick(pState, pLevel, pPos, pRandom)
4341
}
4442

4543
}

0 commit comments

Comments
 (0)