* @param id - The ID of the potion
* @param duration - The duration the potion should run for
* @param strength - The strength of effect to add
*/
public void addPotionEffect(int id, int duration, int strength) {
player.addPotionEffect(new PotionEffect(id, duration, strength));
}