mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 06:36:45 +01:00
Static Abuse Removal - More events purged of static abuse, moved some
unwanted alchemy code into the dumpster
This commit is contained in:
parent
3bddfed72f
commit
40a3de76fb
@ -20,7 +20,7 @@ import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
public final class SQLDatabaseManager implements DatabaseManager {
|
||||
private mcMMO pluginRef;
|
||||
public final String COM_MYSQL_JDBC_DRIVER = "com.mysql.jdbc.Driver";
|
||||
private final String COM_MYSQL_JDBC_DRIVER = "com.mysql.jdbc.Driver";
|
||||
private final String ALL_QUERY_VERSION = "total";
|
||||
private final Map<UUID, Integer> cachedUserIDs = new HashMap<>();
|
||||
private String tablePrefix = pluginRef.getMySQLConfigSettings().getConfigSectionDatabase().getTablePrefix();
|
||||
|
@ -0,0 +1,37 @@
|
||||
//package com.gmail.nossr50.events.skills.alchemy;
|
||||
//
|
||||
//import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
||||
//import com.gmail.nossr50.events.skills.McMMOPlayerSkillEvent;
|
||||
//import org.bukkit.block.Block;
|
||||
//import org.bukkit.block.BlockState;
|
||||
//import org.bukkit.block.BrewingStand;
|
||||
//import org.bukkit.entity.Player;
|
||||
//import org.bukkit.event.Cancellable;
|
||||
//
|
||||
//public class McMMOPlayerBrewEvent extends McMMOPlayerSkillEvent implements Cancellable {
|
||||
// private BlockState brewingStand;
|
||||
//
|
||||
// private boolean cancelled;
|
||||
//
|
||||
// public McMMOPlayerBrewEvent(Player player, BlockState brewingStand) {
|
||||
// super(player, PrimarySkillType.ALCHEMY);
|
||||
// this.brewingStand = brewingStand;
|
||||
// cancelled = false;
|
||||
// }
|
||||
//
|
||||
// public boolean isCancelled() {
|
||||
// return cancelled;
|
||||
// }
|
||||
//
|
||||
// public void setCancelled(boolean newValue) {
|
||||
// this.cancelled = newValue;
|
||||
// }
|
||||
//
|
||||
// public Block getBrewingStandBlock() {
|
||||
// return brewingStand.getBlock();
|
||||
// }
|
||||
//
|
||||
// public BrewingStand getBrewingStand() {
|
||||
// return (BrewingStand) brewingStand;
|
||||
// }
|
||||
//}
|
@ -0,0 +1,34 @@
|
||||
//package com.gmail.nossr50.events.skills.alchemy;
|
||||
//
|
||||
//import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
||||
//import com.gmail.nossr50.events.skills.McMMOPlayerSkillEvent;
|
||||
//import org.bukkit.entity.Player;
|
||||
//import org.bukkit.event.Cancellable;
|
||||
//
|
||||
//public class McMMOPlayerCatalysisEvent extends McMMOPlayerSkillEvent implements Cancellable {
|
||||
// private double speed;
|
||||
//
|
||||
// private boolean cancelled;
|
||||
//
|
||||
// public McMMOPlayerCatalysisEvent(Player player, double speed) {
|
||||
// super(player, PrimarySkillType.ALCHEMY);
|
||||
// this.speed = speed;
|
||||
// cancelled = false;
|
||||
// }
|
||||
//
|
||||
// public boolean isCancelled() {
|
||||
// return cancelled;
|
||||
// }
|
||||
//
|
||||
// public void setCancelled(boolean newValue) {
|
||||
// this.cancelled = newValue;
|
||||
// }
|
||||
//
|
||||
// public double getSpeed() {
|
||||
// return speed;
|
||||
// }
|
||||
//
|
||||
// public void setSpeed(double speed) {
|
||||
// this.speed = speed;
|
||||
// }
|
||||
//}
|
@ -14,12 +14,10 @@ public abstract class McMMOPlayerSkillEvent extends PlayerEvent {
|
||||
**/
|
||||
private static final HandlerList handlers = new HandlerList();
|
||||
protected PrimarySkillType skill;
|
||||
protected int skillLevel;
|
||||
|
||||
protected McMMOPlayerSkillEvent(Player player, PrimarySkillType skill) {
|
||||
super(player);
|
||||
this.skill = skill;
|
||||
this.skillLevel = pluginRef.getUserManager().getPlayer(player).getSkillLevel(skill);
|
||||
}
|
||||
|
||||
public static HandlerList getHandlerList() {
|
||||
@ -33,13 +31,6 @@ public abstract class McMMOPlayerSkillEvent extends PlayerEvent {
|
||||
return skill;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return The level of the skill involved in this event
|
||||
*/
|
||||
public int getSkillLevel() {
|
||||
return skillLevel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public HandlerList getHandlers() {
|
||||
return handlers;
|
||||
|
@ -1,37 +0,0 @@
|
||||
package com.gmail.nossr50.events.skills.alchemy;
|
||||
|
||||
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
||||
import com.gmail.nossr50.events.skills.McMMOPlayerSkillEvent;
|
||||
import org.bukkit.block.Block;
|
||||
import org.bukkit.block.BlockState;
|
||||
import org.bukkit.block.BrewingStand;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.Cancellable;
|
||||
|
||||
public class McMMOPlayerBrewEvent extends McMMOPlayerSkillEvent implements Cancellable {
|
||||
private BlockState brewingStand;
|
||||
|
||||
private boolean cancelled;
|
||||
|
||||
public McMMOPlayerBrewEvent(Player player, BlockState brewingStand) {
|
||||
super(player, PrimarySkillType.ALCHEMY);
|
||||
this.brewingStand = brewingStand;
|
||||
cancelled = false;
|
||||
}
|
||||
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
public void setCancelled(boolean newValue) {
|
||||
this.cancelled = newValue;
|
||||
}
|
||||
|
||||
public Block getBrewingStandBlock() {
|
||||
return brewingStand.getBlock();
|
||||
}
|
||||
|
||||
public BrewingStand getBrewingStand() {
|
||||
return (BrewingStand) brewingStand;
|
||||
}
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package com.gmail.nossr50.events.skills.alchemy;
|
||||
|
||||
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
||||
import com.gmail.nossr50.events.skills.McMMOPlayerSkillEvent;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.Cancellable;
|
||||
|
||||
public class McMMOPlayerCatalysisEvent extends McMMOPlayerSkillEvent implements Cancellable {
|
||||
private double speed;
|
||||
|
||||
private boolean cancelled;
|
||||
|
||||
public McMMOPlayerCatalysisEvent(Player player, double speed) {
|
||||
super(player, PrimarySkillType.ALCHEMY);
|
||||
this.speed = speed;
|
||||
cancelled = false;
|
||||
}
|
||||
|
||||
public boolean isCancelled() {
|
||||
return cancelled;
|
||||
}
|
||||
|
||||
public void setCancelled(boolean newValue) {
|
||||
this.cancelled = newValue;
|
||||
}
|
||||
|
||||
public double getSpeed() {
|
||||
return speed;
|
||||
}
|
||||
|
||||
public void setSpeed(double speed) {
|
||||
this.speed = speed;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user