Package rakama.worldtools.data.entity

Source Code of rakama.worldtools.data.entity.CommandBlock

/*
* Copyright (c) 2012, RamsesA <ramsesakama@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/

package rakama.worldtools.data.entity;

import rakama.worldtools.data.TileEntity;

import com.mojang.nbt.CompoundTag;
import com.mojang.nbt.StringTag;
import com.mojang.nbt.Tag;

public class CommandBlock extends TileEntity
{
    protected CommandBlock(CompoundTag tag)
    {
        super(tag);
    }
   
    public String getCommand()
    {
        Tag command = tag.get("Command");       
        if(command == null)
            return null;
        else
            return ((StringTag)command).data;
    }
   
    public CommandBlock clone()
    {
        return new CommandBlock((CompoundTag)tag.copy());
    }
}
TOP

Related Classes of rakama.worldtools.data.entity.CommandBlock

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.