Skip to content
This repository has been archived by the owner on Dec 31, 2019. It is now read-only.

Commit

Permalink
Rebranded
Browse files Browse the repository at this point in the history
  • Loading branch information
ShakeforProtein committed Jan 20, 2019
1 parent a394118 commit 0f138ef
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 48 deletions.
36 changes: 0 additions & 36 deletions BSBMechanics.iml

This file was deleted.

4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<modelVersion>4.0.0</modelVersion>

<groupId>me.ShakeforProtein</groupId>
<artifactId>BSBMechanics</artifactId>
<version>1.1.0</version>
<artifactId>BentoTweaks</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>BSBMechanics</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package me.shakeforprotein.bsbmechanics;
package me.shakeforprotein.bentotweaks;

import com.sun.corba.se.impl.oa.poa.POAFactory;
import com.sun.org.apache.bcel.internal.generic.NEW;
import org.bukkit.*;
import org.bukkit.entity.*;
import org.bukkit.event.EventHandler;
Expand All @@ -12,28 +10,27 @@
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.BookMeta;
import org.bukkit.material.Cauldron;
import org.bukkit.material.Mushroom;
import org.bukkit.plugin.java.JavaPlugin;

import java.util.ArrayList;
import java.util.List;


public final class BSBMechanics extends JavaPlugin implements Listener {
public final class BentoTweaks extends JavaPlugin implements Listener {
@Override
public void onEnable() {
Boolean debug = false;
System.out.println("BSBMechanics is starting");
System.out.println("BentoTweaks is starting");
getServer().getPluginManager().registerEvents(this, this);
getConfig().options().copyDefaults(true);
getConfig().set("version", this.getDescription().getVersion());
saveConfig();
System.out.println("BSBMechanics startup complete");
System.out.println("BentoTweaks startup complete");
}

@Override
public void onDisable() {
System.out.println("BSBMechanics has shut down");
System.out.println("BentoTweaks has shut down");
}

int cost = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: BSBMechanics
name: BentoTweaks
version: ${project.version}
main: me.shakeforprotein.bsbmechanics.BSBMechanics
main: me.shakeforprotein.bentotweaks.BentoTweaks
authors: [ShakeforProtein]
description: Custm game mechanics for Bentbox Skyblock and Acid Islands.
website: http://treebomc.com
Expand Down

0 comments on commit 0f138ef

Please sign in to comment.