Skip to content
This repository has been archived by the owner on May 3, 2018. It is now read-only.

Commit

Permalink
release for 0.0.1-preR7
Browse files Browse the repository at this point in the history
  • Loading branch information
DefinitlyEvil committed Dec 10, 2014
1 parent a61d786 commit 7fc11e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/dragonet/DragonetServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public DragonetServer(GlowServer server) {
*/
public void initialize() {
/* Uncomment following 3 lines when release */
//this.logger.info("Sending statistic... ");
//StatisticSender statSender = new StatisticSender(DragonetVersioning.DRAGONET_VERSION, System.currentTimeMillis());
//statSender.sendStatistic();
this.logger.info("Sending statistic... ");
StatisticSender statSender = new StatisticSender(DragonetVersioning.DRAGONET_VERSION, System.currentTimeMillis());
statSender.sendStatistic();
File fileConfig = new File(this.server.getConfigDir() + File.separator + "dragonet.yml");
if (!fileConfig.exists()) {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,12 @@ public Message[] translateToPC(PEPacket packet) {
/* ===== TO PE ===== */
@Override
public PEPacket[] translateToPE(Message message) {
/*
if (message.getClass().getSimpleName().contains("Player") || message.getClass().getSimpleName().contains("Window")
|| message.getClass().getSimpleName().contains("Chunk")) {
System.out.print("Trnaslating to PE: " + message.getClass().getSimpleName());
}
*/

/* ==================================================================================== */
/**
Expand Down

0 comments on commit 7fc11e1

Please sign in to comment.