Fixed "Achivements O' Plenty" achievement
This commit is contained in:
parent
1e34a1a45e
commit
7b18c9f229
2 changed files with 22 additions and 4 deletions
|
@ -2,12 +2,14 @@ package biomesoplenty.configuration;
|
|||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.entity.item.EntityItem;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.stats.Achievement;
|
||||
import net.minecraft.util.MathHelper;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.AchievementPage;
|
||||
import net.minecraftforge.common.FakePlayer;
|
||||
import net.minecraftforge.event.ForgeSubscribe;
|
||||
import net.minecraftforge.event.entity.EntityEvent;
|
||||
import biomesoplenty.api.Biomes;
|
||||
|
@ -98,16 +100,32 @@ public class BOPAchievements
|
|||
int i = 0;
|
||||
int biomeID = world.getBiomeGenForCoords(x, z).biomeID;
|
||||
|
||||
if (world.isRemote)
|
||||
//if (world.isRemote)
|
||||
{
|
||||
if (Minecraft.getMinecraft().statFileWriter.hasAchievementUnlocked(achAmbrosia) && Minecraft.getMinecraft().statFileWriter.hasAchievementUnlocked(achPhantom) && Minecraft.getMinecraft().statFileWriter.hasAchievementUnlocked(achCoral) && Minecraft.getMinecraft().statFileWriter.hasAchievementUnlocked(achEnderporter))
|
||||
{
|
||||
if (!Minecraft.getMinecraft().statFileWriter.hasAchievementUnlocked(achAllBOP))
|
||||
{
|
||||
player.addStat(achAllBOP, 1);
|
||||
if (player.inventory.getFirstEmptyStack() >= 0)
|
||||
{
|
||||
EntityItem entityitem = new EntityItem(world, x, y, z, new ItemStack(Items.bopDisc.get(), 1, 0));
|
||||
if (!world.isRemote)
|
||||
{
|
||||
world.spawnEntityInWorld(entityitem);
|
||||
|
||||
if (!(player instanceof FakePlayer))
|
||||
{
|
||||
entityitem.onCollideWithPlayer(player);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
player.dropPlayerItem(new ItemStack(Items.bopDisc.get(), 1, 0));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (biomeID == Biomes.promisedLandForest.get().biomeID)
|
||||
|
|
|
@ -444,7 +444,7 @@ achievement.bop.achCelestial.desc=I am the one who...blocks...
|
|||
achievement.bop.achAmbrosia=Drink of the Gods
|
||||
achievement.bop.achAmbrosia.desc=Stay thirst, my friends.
|
||||
|
||||
achievement.bop.achAllBOP=Master Explorer
|
||||
achievement.bop.achAllBOP=Achievements O' Plenty
|
||||
achievement.bop.achAllBOP.desc=You got all of the Biomes O' Plenty achievements!
|
||||
|
||||
itemGroup.tabBiomesOPlenty=Biomes O' Plenty
|
||||
|
|
Loading…
Reference in a new issue