diff --git a/src/main/java/ellpeck/actuallyadditions/booklet/GuiAAAchievements.java b/src/main/java/ellpeck/actuallyadditions/booklet/GuiAAAchievements.java index a3a8cfe6c..4ac9d41a2 100644 --- a/src/main/java/ellpeck/actuallyadditions/booklet/GuiAAAchievements.java +++ b/src/main/java/ellpeck/actuallyadditions/booklet/GuiAAAchievements.java @@ -24,7 +24,7 @@ public class GuiAAAchievements extends GuiAchievements{ } /** - * (Partially excerpted from Botania with permission, thanks!) + * (Partially excerpted from Botania by Vazkii with permission, thanks!) */ @Override public void initGui(){ diff --git a/src/main/java/ellpeck/actuallyadditions/event/EntityLivingEvent.java b/src/main/java/ellpeck/actuallyadditions/event/EntityLivingEvent.java index 756216505..ead61e758 100644 --- a/src/main/java/ellpeck/actuallyadditions/event/EntityLivingEvent.java +++ b/src/main/java/ellpeck/actuallyadditions/event/EntityLivingEvent.java @@ -46,7 +46,7 @@ public class EntityLivingEvent{ /** * Makes players be able to fly if they have Wings Of The Bats equipped - * (Partially excerpted from Botania's Wing System (as I had fiddled around with the system and couldn't make it work) with permission, thanks!) + * (Partially excerpted from Botania's Wing System by Vazkii (as I had fiddled around with the system and couldn't make it work) with permission, thanks!) */ private void doWingStuff(LivingUpdateEvent event){ if(event.entityLiving instanceof EntityPlayer){ diff --git a/src/main/java/ellpeck/actuallyadditions/items/ItemWingsOfTheBats.java b/src/main/java/ellpeck/actuallyadditions/items/ItemWingsOfTheBats.java index 4f22f4249..c27ddb307 100644 --- a/src/main/java/ellpeck/actuallyadditions/items/ItemWingsOfTheBats.java +++ b/src/main/java/ellpeck/actuallyadditions/items/ItemWingsOfTheBats.java @@ -33,7 +33,7 @@ public class ItemWingsOfTheBats extends Item implements INameableItem{ * Saves Remote Players separately to make de-synced Event Calling * not bug out Capabilities when taking off the Wings * - * (Partially excerpted from Botania's Wing System (as I had fiddled around with the system and couldn't make it work) with permission, thanks!) + * (Partially excerpted from Botania's Wing System by Vazkii (as I had fiddled around with the system and couldn't make it work) with permission, thanks!) */ public static ArrayList wingedPlayers = new ArrayList();