Package org.terasology.world.block

Examples of org.terasology.world.block.BeforeDeactivateBlocks


        for (TShortObjectMap<TIntList> deactivatedBlockSet : deactivatedBlockSets) {
            deactivatedBlockSet.forEachEntry(new TShortObjectProcedure<TIntList>() {
                @Override
                public boolean execute(short id, TIntList positions) {
                    if (positions.size() > 0) {
                        blockManager.getBlock(id).getEntity().send(new BeforeDeactivateBlocks(positions, registry));
                    }
                    return true;
                }
            });
        }
View Full Code Here

TOP

Related Classes of org.terasology.world.block.BeforeDeactivateBlocks

Copyright © 2018 www.massapicom. 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.