Package com.sk89q.craftbook.mechanics.drops

Examples of com.sk89q.craftbook.mechanics.drops.EntityCustomDropDefinition


                                stacks.add(nstack);
                                if(dd.append)
                                    append = true;
                            }

                            EntityCustomDropDefinition converted = new EntityCustomDropDefinition(def.getKey().toUpperCase() + "" + this.converted++, stacks, null, EntityType.valueOf(def.getKey().toUpperCase()));
                            converted.setAppend(append);

                            ((CustomDrops) CraftBookPlugin.inst().getMechanic(CustomDrops.class)).addDefinition(converted);
                        }
                    } else {
                        this.blockDropDefinitions = blockDropDefinitions;
View Full Code Here

TOP

Related Classes of com.sk89q.craftbook.mechanics.drops.EntityCustomDropDefinition

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.