Skip to content

Commit

Permalink
Fixed Strings
Browse files Browse the repository at this point in the history
  • Loading branch information
EATSTEAK committed Apr 14, 2018
1 parent c53cd31 commit 3070e62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.itstake.chprotocolsupport;
package me.itstake.chviaversion;

import com.laytonsmith.PureUtilities.SimpleVersion;
import com.laytonsmith.PureUtilities.Version;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package me.itstake.chprotocolsupport;
package me.itstake.chviaversion;

import com.laytonsmith.PureUtilities.SimpleVersion;
import com.laytonsmith.PureUtilities.Version;
Expand All @@ -9,7 +9,7 @@
/**
* Created by bexco on 2016-03-12.
*/
@MSExtension("CHProtocolSupport")
@MSExtension("CHViaVersion")
public class LifeCylcles extends AbstractExtension {

@Override
Expand All @@ -19,11 +19,11 @@ public Version getVersion() {

@Override
public void onStartup() {
Bukkit.getConsoleSender().sendMessage("[CommandHelper] CHProtocolSupport v" + getVersion().toString() + " Enabled.");
Bukkit.getConsoleSender().sendMessage("[CommandHelper] CHViaVersion v" + getVersion().toString() + " Enabled.");
}

@Override
public void onShutdown() {
Bukkit.getConsoleSender().sendMessage("[CommandHelper] CHProtocolSupport v" + getVersion().toString() + " Disabled.");
Bukkit.getConsoleSender().sendMessage("[CommandHelper] CHViaVersion v" + getVersion().toString() + " Disabled.");
}
}

0 comments on commit 3070e62

Please sign in to comment.