Example usage for net.minecraftforge.common.util FakePlayer subclass-usage

List of usage examples for net.minecraftforge.common.util FakePlayer subclass-usage

Introduction

In this page you can find the example usage for net.minecraftforge.common.util FakePlayer subclass-usage.

Usage

From source file com.buuz135.industrial.utils.IFFakePlayer.java

public class IFFakePlayer extends FakePlayer {

    private static final UUID uuid = UUID.fromString("ec5b5875-ebb5-4b47-833b-0de37ac9e6d7");

    private static GameProfile PROFILE = new GameProfile(uuid, "[IF]");

From source file com.sk89q.worldedit.forge.WorldEditFakePlayer.java

public class WorldEditFakePlayer extends FakePlayer {

    private static final GameProfile FAKE_GAME_PROFILE = new GameProfile(
            UUID.nameUUIDFromBytes("worldedit".getBytes()), "[WorldEdit]");

    public WorldEditFakePlayer(WorldServer world) {

From source file com.theoriginalbit.framework.peripheral.turtle.PlayerTurtle.java

/**
 * @author theoriginalbit
 * @since 26/10/14
 */
public class PlayerTurtle extends FakePlayer {

From source file com.theoriginalbit.moarperipherals.api.peripheral.turtle.PlayerTurtle.java

/**
 * @author theoriginalbit
 * @since 26/10/14
 */
public class PlayerTurtle extends FakePlayer {

From source file com.theoriginalbit.peripheral.turtle.PlayerTurtle.java

/**
 * @author Joshua Asbury (@theoriginalbit)
 */
public class PlayerTurtle extends FakePlayer {
    public PlayerTurtle(ITurtleAccess turtle) {
        super((WorldServer) turtle.getWorld(), new GameProfile(null, "MoarPeripheralsTurtle"));

From source file makeo.gadomancy.common.entities.fake.AdvancedFakePlayer.java

/**
 * This class is part of the Gadomancy Mod
 * Gadomancy is Open Source and distributed under the
 * GNU LESSER GENERAL PUBLIC LICENSE
 * for more read the LICENSE file
 *