Cape quick fix
This commit is contained in:
parent
7eb793ceee
commit
eeb8e19ed1
Binary file not shown.
12122
javascript/classes.js
12122
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,6 @@
|
|||
package dev.resent.module.impl.misc;
|
||||
|
||||
import dev.resent.annotation.Module;
|
||||
import dev.resent.client.Resent;
|
||||
import dev.resent.module.base.Mod;
|
||||
import dev.resent.module.base.Mod.Category;
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ import javax.sound.sampled.LineUnavailableException;
|
|||
import javax.sound.sampled.UnsupportedAudioFileException;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.audio.ISound;
|
||||
import net.minecraft.client.audio.PositionedSoundRecord;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
|
@ -61,9 +62,10 @@ public class SoundManager {
|
|||
}
|
||||
|
||||
// <3
|
||||
public void playAvasDedication(){
|
||||
public void playAv(){
|
||||
ISound sound = PositionedSoundRecord.create(new ResourceLocation("minecraft:music.res"), 1);
|
||||
Minecraft.getMinecraft().getSoundHandler().stopSounds();
|
||||
Minecraft.getMinecraft().getSoundHandler().playSound(PositionedSoundRecord.create(new ResourceLocation("minecraft:music.res"), 1));
|
||||
Minecraft.getMinecraft().getSoundHandler().playSound(sound);
|
||||
}
|
||||
|
||||
public void stopMusic() {
|
||||
|
|
|
@ -4,7 +4,6 @@ import net.lax1dude.eaglercraft.v1_8.EaglercraftRandom;
|
|||
import net.lax1dude.eaglercraft.v1_8.opengl.GlStateManager;
|
||||
import net.minecraft.client.model.ModelBox;
|
||||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.client.renderer.RenderHelper;
|
||||
import net.minecraft.client.renderer.entity.RendererLivingEntity;
|
||||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.entity.projectile.EntityArrow;
|
||||
|
|
|
@ -7,6 +7,7 @@ import net.minecraft.client.entity.AbstractClientPlayer;
|
|||
import net.minecraft.client.model.ModelPlayer;
|
||||
import net.minecraft.client.renderer.entity.RenderPlayer;
|
||||
import net.minecraft.util.MathHelper;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
/**+
|
||||
* This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code.
|
||||
|
@ -37,7 +38,9 @@ public class LayerCape implements LayerRenderer<AbstractClientPlayer> {
|
|||
public void doRenderLayer(AbstractClientPlayer abstractclientplayer, float var2, float var3, float f, float var5, float var6, float var7, float var8) {
|
||||
if (abstractclientplayer.hasPlayerInfo() && !abstractclientplayer.isInvisible() && this.playerRenderer.getMainModel() instanceof ModelPlayer && ModManager.cape.isEnabled() && CapeManager.shouldRender(abstractclientplayer)) {
|
||||
GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
|
||||
if(CapeManager.capeLocation != null){
|
||||
if(CapeManager.capeLocation == null){
|
||||
this.playerRenderer.bindTexture(new ResourceLocation("eagler:gui/unnamed.png"));
|
||||
}else {
|
||||
this.playerRenderer.bindTexture(CapeManager.capeLocation);
|
||||
}
|
||||
GlStateManager.pushMatrix();
|
||||
|
|
Loading…
Reference in New Issue
Block a user