| Total Complexity | 3 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package de.pewpewproject.lasertag.block.entity; |
||
| 14 | public class LasertagGameManagerBlockEntity extends BlockEntity { |
||
| 15 | |||
| 16 | public LasertagGameManagerBlockEntity(BlockPos pos, BlockState state) { |
||
| 17 | super(Entities.LASERTAG_GAME_MANAGER_BLOCK_ENTITY, pos, state); |
||
| 18 | } |
||
| 19 | |||
| 20 | public void openScreen(PlayerEntity player) { |
||
| 21 | if (player.getEntityWorld().isClient) { |
||
| 22 | player.openLasertagGameManagerScreen(player); |
||
| 23 | } |
||
| 26 |