Updated copyright to peoples.

This commit is contained in:
Ellpeck 2015-09-27 20:00:14 +02:00
parent 54101d2fc9
commit dddbc8bd88
3 changed files with 3 additions and 3 deletions

View file

@ -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(){

View file

@ -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){

View file

@ -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<String> wingedPlayers = new ArrayList<String>();