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 @Override
public void initGui(){ 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 * 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){ private void doWingStuff(LivingUpdateEvent event){
if(event.entityLiving instanceof EntityPlayer){ 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 * Saves Remote Players separately to make de-synced Event Calling
* not bug out Capabilities when taking off the Wings * 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>(); public static ArrayList<String> wingedPlayers = new ArrayList<String>();