Posted June 30, 20223 yr @Mod.EventBusSubscriber(modid = SpaceAndMore.MOD_ID, bus = Bus.FORGE, value = Dist.CLIENT) public class ClientForgeEvents { public ClientForgeEvents() { } @SubscribeEvent public void onPlayerTick(PlayerTickEvent event) { System.out.println("Tick"); } @SubscribeEvent public void pickupItem(EntityItemPickupEvent event) { System.out.println("Item picked up!"); } } This is the code for the events. Edited June 30, 20223 yr by iAmThePengu
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.