mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 06:36:45 +01:00
Static Abuse Removal - Misc Tasks
This commit is contained in:
parent
3ea739d111
commit
cf46ec7498
@ -1,15 +1,19 @@
|
|||||||
package com.gmail.nossr50.runnables;
|
package com.gmail.nossr50.runnables;
|
||||||
|
|
||||||
import com.gmail.nossr50.core.MetadataConstants;
|
import com.gmail.nossr50.core.MetadataConstants;
|
||||||
|
import com.gmail.nossr50.mcMMO;
|
||||||
import org.bukkit.entity.LivingEntity;
|
import org.bukkit.entity.LivingEntity;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
public class MobHealthDisplayUpdaterTask extends BukkitRunnable {
|
public class MobHealthDisplayUpdaterTask extends BukkitRunnable {
|
||||||
|
private final mcMMO pluginRef;
|
||||||
private LivingEntity target;
|
private LivingEntity target;
|
||||||
private String oldName;
|
private String oldName;
|
||||||
private boolean oldNameVisible;
|
private boolean oldNameVisible;
|
||||||
|
|
||||||
public MobHealthDisplayUpdaterTask(LivingEntity target) {
|
public MobHealthDisplayUpdaterTask(mcMMO pluginRef, LivingEntity target) {
|
||||||
|
this.pluginRef = pluginRef;
|
||||||
|
|
||||||
if (target.isValid()) {
|
if (target.isValid()) {
|
||||||
this.target = target;
|
this.target = target;
|
||||||
this.oldName = target.getMetadata(MetadataConstants.CUSTOM_NAME_METAKEY).get(0).asString();
|
this.oldName = target.getMetadata(MetadataConstants.CUSTOM_NAME_METAKEY).get(0).asString();
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package com.gmail.nossr50.runnables;
|
package com.gmail.nossr50.runnables;
|
||||||
|
|
||||||
import com.gmail.nossr50.core.MetadataConstants;
|
import com.gmail.nossr50.core.MetadataConstants;
|
||||||
|
import com.gmail.nossr50.mcMMO;
|
||||||
import com.gmail.nossr50.util.BlockUtils;
|
import com.gmail.nossr50.util.BlockUtils;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.block.BlockFace;
|
import org.bukkit.block.BlockFace;
|
||||||
@ -9,11 +10,13 @@ import org.bukkit.scheduler.BukkitRunnable;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class PistonTrackerTask extends BukkitRunnable {
|
public class PistonTrackerTask extends BukkitRunnable {
|
||||||
|
private final mcMMO pluginRef;
|
||||||
private List<Block> blocks;
|
private List<Block> blocks;
|
||||||
private BlockFace direction;
|
private BlockFace direction;
|
||||||
private Block futureEmptyBlock;
|
private Block futureEmptyBlock;
|
||||||
|
|
||||||
public PistonTrackerTask(List<Block> blocks, BlockFace direction, Block futureEmptyBlock) {
|
public PistonTrackerTask(mcMMO pluginRef, List<Block> blocks, BlockFace direction, Block futureEmptyBlock) {
|
||||||
|
this.pluginRef = pluginRef;
|
||||||
this.blocks = blocks;
|
this.blocks = blocks;
|
||||||
this.direction = direction;
|
this.direction = direction;
|
||||||
this.futureEmptyBlock = futureEmptyBlock;
|
this.futureEmptyBlock = futureEmptyBlock;
|
||||||
|
@ -1,10 +1,18 @@
|
|||||||
package com.gmail.nossr50.runnables;
|
package com.gmail.nossr50.runnables;
|
||||||
|
|
||||||
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
||||||
|
import com.gmail.nossr50.mcMMO;
|
||||||
import com.gmail.nossr50.runnables.player.PlayerProfileSaveTask;
|
import com.gmail.nossr50.runnables.player.PlayerProfileSaveTask;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
public class SaveTimerTask extends BukkitRunnable {
|
public class SaveTimerTask extends BukkitRunnable {
|
||||||
|
|
||||||
|
private final mcMMO pluginRef;
|
||||||
|
|
||||||
|
public SaveTimerTask(mcMMO pluginRef) {
|
||||||
|
this.pluginRef = pluginRef;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
// All player data will be saved periodically through this
|
// All player data will be saved periodically through this
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
package com.gmail.nossr50.runnables;
|
package com.gmail.nossr50.runnables;
|
||||||
|
|
||||||
|
import com.gmail.nossr50.mcMMO;
|
||||||
import com.gmail.nossr50.util.BlockUtils;
|
import com.gmail.nossr50.util.BlockUtils;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.block.BlockFace;
|
import org.bukkit.block.BlockFace;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
public class StickyPistonTrackerTask extends BukkitRunnable {
|
public class StickyPistonTrackerTask extends BukkitRunnable {
|
||||||
|
private final mcMMO pluginRef;
|
||||||
private BlockFace direction;
|
private BlockFace direction;
|
||||||
private Block block;
|
private Block block;
|
||||||
private Block movedBlock;
|
private Block movedBlock;
|
||||||
|
|
||||||
public StickyPistonTrackerTask(BlockFace direction, Block block, Block movedBlock) {
|
public StickyPistonTrackerTask(mcMMO pluginRef, BlockFace direction, Block block, Block movedBlock) {
|
||||||
|
this.pluginRef = pluginRef;
|
||||||
this.direction = direction;
|
this.direction = direction;
|
||||||
this.block = block;
|
this.block = block;
|
||||||
this.movedBlock = movedBlock;
|
this.movedBlock = movedBlock;
|
||||||
|
Loading…
Reference in New Issue
Block a user