Package org.melonbrew.fe.database

Examples of org.melonbrew.fe.database.Database


        }
    }

    @EventHandler
    public void onPlayerQuit(PlayerQuitEvent event) {
        Database database = plugin.getFeDatabase();

        Player player = event.getPlayer();

        Account account = database.getCachedAccount(player.getName(), player.getUniqueId().toString());

        if (account != null) {
            account.save(account.getMoney());

            database.removeCachedAccount(account);
        }
    }
View Full Code Here

TOP

Related Classes of org.melonbrew.fe.database.Database

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.