Examples of fixElevation()


Examples of megamek.common.Entity.fixElevation()

    public void run(int connId, String[] args) {
        int countbad = 0;
        for (Enumeration<Entity> e = server.getGame().getEntities(); e
                .hasMoreElements();) {
            Entity entity = e.nextElement();
            if (entity.fixElevation()) {
                server.sendServerChat(entity.getDisplayName()
                        + " elevation fixed, see megameklog.txt for details & report a bug if you know how this happened");
                countbad++;
            }
        }
View Full Code Here
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.