Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers
Event IEventManager
IBlockEvent IEventCancelable IEventHasResult IEventPositionable IMinecartEvent IPotionBrewEvent IProcessableEvent IProjectileImpactEvent IEntityEvent IExplosionEvent ILivingEvent IPlayerEvent ITickEvent AnimalTameEvent ArrowLooseEvent ArrowNockEvent BlockBreakEvent BlockHarvestDropsEvent BlockNeighborNotifyEvent BlockPlaceEvent ClientTickEvent CommandEvent CriticalHitEvent CropGrowPostEvent CropGrowPreEvent EnchantmentLevelSetEvent EnderTeleportEvent EntityJoinWorldEvent EntityLivingAttackedEvent EntityLivingDamageEvent EntityLivingDeathEvent EntityLivingDeathDropsEvent EntityLivingEquipmentChangeEvent EntityLivingFallEvent EntityLivingHealEvent EntityLivingHurtEvent EntityLivingJumpEvent EntityLivingSpawnEvent EntityLivingUpdateEvent EntityMountEvent EntityStruckByLightningEvent EntityTravelToDimensionEvent ExplosionDetonateEvent ExplosionStartEvent FarmlandTrampleEvent ItemExpireEvent ItemFishedEvent ItemTossEvent LivingDestroyBlockEvent LivingEntityUseItemEvent LivingExperienceDropEvent LivingKnockBackEvent LootingLevelEvent MinecartCollisionEvent MinecartInteractEvent MobGriefingEvent PlayerAdvancementEvent PlayerAnvilRepairEvent PlayerAnvilUpdateEvent PlayerAttackEntityEvent PlayerBonemealEvent PlayerBreakSpeedEvent PlayerBrewedPotionEvent PlayerChangedDimensionEvent PlayerCloneEvent PlayerCloseContainerEvent PlayerCraftedEvent PlayerDeathDropsEvent PlayerDestroyItemEvent PlayerFillBucketEvent PlayerInteractBlockEvent PlayerInteractEntityEvent PlayerInteractEvent PlayerItemPickupEvent PlayerLeftClickBlockEvent PlayerLoggedInEvent PlayerLoggedOutEvent PlayerOpenContainerEvent PlayerPickupItemEvent PlayerPickupXpEvent PlayerRespawnEvent PlayerRightClickItemEvent PlayerSetSpawnEvent PlayerSleepInBedEvent PlayerSmeltedEvent PlayerTickEvent PlayerUseHoeEvent PlayerVisibilityEvent PortalSpawnEvent PotionBrewPostEvent PotionBrewPreEvent ProjectileImpactArrowEvent ProjectileImpactFireballEvent ProjectileImpactThrowableEvent RenderTickEvent ServerTickEvent SleepingLocationCheckEvent SleepingTimeCheckEvent WorldTickEvent

PotionBrewPost

This event is fired immediately after a potion has been “brewed” by the brewing stand tile entity, when the output items have already been replaced. If the PotionBrewPreEvent has been cancelled but the itemstacks within the brewing stand have been modified, this event will also be fired.

If the pre-event is cancelled without modifying itemstacks, this event will not be fired.

Event Class

You will need to cast the event in the function header as this class:
crafttweaker.event.PotionBrewPostEvent You can, of course, also import the class before and use that name then.

Event interface extensions

PotionBrewPost Events implement the following interfaces and are able to call all of their methods/getters/setters as well:

ZenGetters/ZenSetters/ZenMethods from extension

The following information can be retrieved/set during the event:

ZenGetterZenSetterType
ZenGetter
length
ZenSetter
Type
int

ZenMethods

  • event.getItem(int) returns IItemStack on the given index in the crafting station. Will return an empty IItemStack if the specified index is greater than length.
  • event.setItem(int, IItemStack) Replaces or sets IItemStack on given index. If the index is greater than the length of the item array, nothing will happen.