This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Bugs : | |
* Fixed a bug where Fighter's ult wouldn't add AD and health | |
-- Balance : | |
- Fighter : | |
Attack Speed : 1.25 -> 1.35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Les bugs marqués comme "résolu" ne sont pas forcément résolu dans la version dans laquelle vous jouez | |
Veuillez ne pas rapporter un bug marqué comme résolu | |
Le four en fer n'affiche pas la bonne GUI [RESOLU] [CLIENT-SERVEUR] | |
Mauvaise texture de bloc pour le four en fer dans l'inventaire [RESOLU] [CLIENT] | |
Bug avec le Shift-Click en craftant des nouveaux items LIE A Impossible de crafter les nouveaux items en solo [RESOLU] [CLIENT] | |
Impossible de poser correctement les tapis en laine, erreur d'inattention de merde [RESOLU] [SERVEUR] | |
Four en fer n'interragissant pas avec le comparateur [RESOLU] [SERVEUR] | |
HitBox des tapis en laine bugguée, erreur d'inattention de merde [RESOLU] [SERVEUR] | |
Aucun nom pour les nouveaux items et blocs [RESOLU] [CLIENT] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.minecraft.src; | |
import java.io.ByteArrayOutputStream; | |
import java.io.DataOutputStream; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Collection; | |
import java.util.Iterator; | |
import java.util.LinkedList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.minecraft.src; | |
import net.minecraft.client.Minecraft; | |
public class EntityPlayerSP extends EntityPlayer | |
{ | |
public MovementInput movementInput; | |
protected Minecraft mc; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.minecraft.src; | |
import java.util.Collection; | |
import java.util.Iterator; | |
import java.util.List; | |
public abstract class EntityPlayer extends EntityLiving implements ICommandSender | |
{ | |
/** Inventory of the player */ | |
public InventoryPlayer inventory = new InventoryPlayer(this); |