mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-25 03:35:22 +01:00
Change the project structure to allow a dedicated API module to exist
This commit is contained in:
parent
6e6bfe469d
commit
4d3c4fca17
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## Maven
|
## Maven
|
||||||
/**/target/
|
/**/target/
|
||||||
/dependency-reduced-pom.xml
|
/**/dependency-reduced-pom.xml
|
||||||
|
|
||||||
## Misc.
|
## Misc.
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
68
EpicHoppers-API/pom.xml
Normal file
68
EpicHoppers-API/pom.xml
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.craftaro</groupId>
|
||||||
|
<artifactId>EpicHoppers-Parent</artifactId>
|
||||||
|
<version>3.0.0-SNAPSHOT</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<artifactId>EpicHoppers-API</artifactId>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>3.5.0</version>
|
||||||
|
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<links>
|
||||||
|
<link>https://hub.spigotmc.org/javadocs/spigot/</link>
|
||||||
|
</links>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.craftaro</groupId>
|
||||||
|
<artifactId>CraftaroCore</artifactId>
|
||||||
|
<version>${craftaro.coreVersion}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spigotmc</groupId>
|
||||||
|
<artifactId>spigot-api</artifactId>
|
||||||
|
<version>1.8-R0.1-SNAPSHOT</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
159
EpicHoppers-Plugin/pom.xml
Normal file
159
EpicHoppers-Plugin/pom.xml
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.craftaro</groupId>
|
||||||
|
<artifactId>EpicHoppers-Parent</artifactId>
|
||||||
|
<version>3.0.0-SNAPSHOT</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<artifactId>EpicHoppers-Plugin</artifactId>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.4.1</version>
|
||||||
|
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>shade</goal>
|
||||||
|
</goals>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<finalName>${project.parent.name}-${project.version}</finalName>
|
||||||
|
|
||||||
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
||||||
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
||||||
|
<minimizeJar>true</minimizeJar>
|
||||||
|
|
||||||
|
<relocations>
|
||||||
|
<relocation>
|
||||||
|
<pattern>com.craftaro.core</pattern>
|
||||||
|
<shadedPattern>com.songoda.epichoppers.core</shadedPattern>
|
||||||
|
</relocation>
|
||||||
|
</relocations>
|
||||||
|
|
||||||
|
<filters>
|
||||||
|
<filter>
|
||||||
|
<artifact>*:*</artifact>
|
||||||
|
|
||||||
|
<excludes>
|
||||||
|
<exclude>META-INF/**</exclude>
|
||||||
|
<exclude>LICENSE</exclude>
|
||||||
|
<exclude>LICENSE.**</exclude>
|
||||||
|
</excludes>
|
||||||
|
</filter>
|
||||||
|
|
||||||
|
<filter>
|
||||||
|
<artifact>com.craftaro:CraftaroCore</artifact>
|
||||||
|
<excludeDefaults>false</excludeDefaults>
|
||||||
|
<includes>
|
||||||
|
<include>**/nms/v*/**</include>
|
||||||
|
</includes>
|
||||||
|
</filter>
|
||||||
|
</filters>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
<filtering>true</filtering>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>public</id>
|
||||||
|
<url>https://repo.songoda.com/repository/public/</url>
|
||||||
|
</repository>
|
||||||
|
|
||||||
|
<repository>
|
||||||
|
<id>jitpack.io</id>
|
||||||
|
<url>https://jitpack.io/</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.craftaro</groupId>
|
||||||
|
<artifactId>EpicHoppers-API</artifactId>
|
||||||
|
<version>3.0.0-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.craftaro</groupId>
|
||||||
|
<artifactId>CraftaroCore</artifactId>
|
||||||
|
<version>3.0.0-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spigotmc</groupId>
|
||||||
|
<artifactId>spigot-api</artifactId>
|
||||||
|
<version>1.19.4-R0.1-SNAPSHOT</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.songoda</groupId>
|
||||||
|
<artifactId>skyblock</artifactId>
|
||||||
|
<version>2.3.30</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.songoda</groupId>
|
||||||
|
<artifactId>EpicFarming</artifactId>
|
||||||
|
<version>3.0.24</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.brcdev-minecraft</groupId>
|
||||||
|
<artifactId>shopgui-api</artifactId>
|
||||||
|
<version>2.2.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.Gypopo</groupId>
|
||||||
|
<artifactId>EconomyShopGUI-API</artifactId>
|
||||||
|
<version>1.4.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.songoda</groupId>
|
||||||
|
<artifactId>UltimateStacker</artifactId>
|
||||||
|
<version>2.1.6</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.bgsoftware</groupId>
|
||||||
|
<artifactId>wildstacker</artifactId>
|
||||||
|
<version>3.5.1</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.github.DeadSilenceIV</groupId>
|
||||||
|
<artifactId>AdvancedChestsAPI</artifactId>
|
||||||
|
<version>2.2</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
@ -1,6 +1,5 @@
|
|||||||
package com.songoda.epichoppers.hopper.levels.modules;
|
package com.songoda.epichoppers.hopper.levels.modules;
|
||||||
|
|
||||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
|
||||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||||
import com.craftaro.core.utils.TextUtils;
|
import com.craftaro.core.utils.TextUtils;
|
||||||
import com.songoda.epichoppers.EpicHoppers;
|
import com.songoda.epichoppers.EpicHoppers;
|
@ -30,6 +30,17 @@ public class TeleportHandler {
|
|||||||
Bukkit.getScheduler().scheduleSyncRepeatingTask(plugin, this::teleportRunner, 0, Settings.TELEPORT_TICKS.getLong());
|
Bukkit.getScheduler().scheduleSyncRepeatingTask(plugin, this::teleportRunner, 0, Settings.TELEPORT_TICKS.getLong());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void tpEntity(Entity entity, Hopper hopper) {
|
||||||
|
if (hopper == null || !this.plugin.getHopperManager().isHopper(hopper.getLocation())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Hopper lastHopper = this.getChain(hopper, 1);
|
||||||
|
if (!hopper.equals(lastHopper)) {
|
||||||
|
this.doTeleport(entity, lastHopper.getLocation());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void teleportRunner() {
|
private void teleportRunner() {
|
||||||
if (!this.plugin.getHopperManager().isReady()) {
|
if (!this.plugin.getHopperManager().isReady()) {
|
||||||
return;
|
return;
|
||||||
@ -71,17 +82,6 @@ public class TeleportHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void tpEntity(Entity entity, Hopper hopper) {
|
|
||||||
if (hopper == null || !this.plugin.getHopperManager().isHopper(hopper.getLocation())) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Hopper lastHopper = this.getChain(hopper, 1);
|
|
||||||
if (!hopper.equals(lastHopper)) {
|
|
||||||
this.doTeleport(entity, lastHopper.getLocation());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Recursively gets the next hopper in the linked hopper chain
|
* Recursively gets the next hopper in the linked hopper chain
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
name: ${project.name}
|
name: ${project.parent.name}
|
||||||
description: ${project.description}
|
description: ${project.parent.description}
|
||||||
version: ${project.version}
|
version: ${project.version}
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ softdepend:
|
|||||||
- WorldGuard
|
- WorldGuard
|
||||||
|
|
||||||
author: Craftaro
|
author: Craftaro
|
||||||
website: ${project.url}
|
website: ${project.parent.url}
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
eh:
|
eh:
|
152
pom.xml
152
pom.xml
@ -4,20 +4,32 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>com.songoda</groupId>
|
<groupId>com.craftaro</groupId>
|
||||||
<artifactId>EpicHoppers</artifactId>
|
<artifactId>EpicHoppers-Parent</artifactId>
|
||||||
<version>4.7.9</version>
|
<packaging>pom</packaging>
|
||||||
|
<version>3.0.0-SNAPSHOT</version>
|
||||||
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z-DEV' to update version recursively -->
|
||||||
|
|
||||||
|
<modules>
|
||||||
|
<module>EpicHoppers-API</module>
|
||||||
|
<module>EpicHoppers-Plugin</module>
|
||||||
|
</modules>
|
||||||
|
|
||||||
<name>EpicHoppers</name>
|
<name>EpicHoppers</name>
|
||||||
<description>Connect hoppers over long distances, filter out unwanted items, auto break blocks, auto sell items and much more.</description>
|
<description>Connect hoppers over long distances, filter out unwanted items, auto break blocks, auto sell items and much more.</description>
|
||||||
<url>https://craftaro.com/marketplace/product/15</url>
|
<url>https://craftaro.com/marketplace/product/15</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
<craftaro.coreVersion>3.0.0-SNAPSHOT</craftaro.coreVersion>
|
||||||
|
|
||||||
<maven.compiler.release>8</maven.compiler.release>
|
<maven.compiler.release>8</maven.compiler.release>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
|
||||||
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
||||||
|
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
@ -30,67 +42,6 @@
|
|||||||
<connection>scm:git:git://github.com/craftaro/EpicHoppers.git</connection>
|
<connection>scm:git:git://github.com/craftaro/EpicHoppers.git</connection>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
|
||||||
<version>3.4.1</version>
|
|
||||||
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<phase>package</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>shade</goal>
|
|
||||||
</goals>
|
|
||||||
|
|
||||||
<configuration>
|
|
||||||
<finalName>${project.name}-${project.version}</finalName>
|
|
||||||
|
|
||||||
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
||||||
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
|
||||||
<minimizeJar>true</minimizeJar>
|
|
||||||
|
|
||||||
<relocations>
|
|
||||||
<relocation>
|
|
||||||
<pattern>com.craftaro.core</pattern>
|
|
||||||
<shadedPattern>com.songoda.epichoppers.core</shadedPattern>
|
|
||||||
</relocation>
|
|
||||||
</relocations>
|
|
||||||
|
|
||||||
<filters>
|
|
||||||
<filter>
|
|
||||||
<artifact>*:*</artifact>
|
|
||||||
|
|
||||||
<excludes>
|
|
||||||
<exclude>META-INF/**</exclude>
|
|
||||||
<exclude>LICENSE</exclude>
|
|
||||||
<exclude>LICENSE.**</exclude>
|
|
||||||
</excludes>
|
|
||||||
</filter>
|
|
||||||
|
|
||||||
<filter>
|
|
||||||
<artifact>com.craftaro:CraftaroCore</artifact>
|
|
||||||
<excludeDefaults>false</excludeDefaults>
|
|
||||||
<includes>
|
|
||||||
<include>**/nms/v*/**</include>
|
|
||||||
</includes>
|
|
||||||
</filter>
|
|
||||||
</filters>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
|
|
||||||
<resources>
|
|
||||||
<resource>
|
|
||||||
<directory>src/main/resources</directory>
|
|
||||||
<filtering>true</filtering>
|
|
||||||
</resource>
|
|
||||||
</resources>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>craftaro-minecraft-plugins</id>
|
<id>craftaro-minecraft-plugins</id>
|
||||||
@ -101,79 +52,14 @@
|
|||||||
<id>SpigotMC</id>
|
<id>SpigotMC</id>
|
||||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<repository>
|
|
||||||
<id>public</id>
|
|
||||||
<url>https://repo.songoda.com/repository/public/</url>
|
|
||||||
</repository>
|
|
||||||
|
|
||||||
<repository>
|
|
||||||
<id>jitpack.io</id>
|
|
||||||
<url>https://jitpack.io/</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<!-- Dev dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.craftaro</groupId>
|
<groupId>org.jetbrains</groupId>
|
||||||
<artifactId>CraftaroCore</artifactId>
|
<artifactId>annotations</artifactId>
|
||||||
<version>3.0.0-SNAPSHOT</version>
|
<version>24.0.1</version>
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.spigotmc</groupId>
|
|
||||||
<artifactId>spigot-api</artifactId>
|
|
||||||
<version>1.19.4-R0.1-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.songoda</groupId>
|
|
||||||
<artifactId>skyblock</artifactId>
|
|
||||||
<version>2.3.30</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.songoda</groupId>
|
|
||||||
<artifactId>EpicFarming</artifactId>
|
|
||||||
<version>3.0.24</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.brcdev-minecraft</groupId>
|
|
||||||
<artifactId>shopgui-api</artifactId>
|
|
||||||
<version>2.2.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.Gypopo</groupId>
|
|
||||||
<artifactId>EconomyShopGUI-API</artifactId>
|
|
||||||
<version>1.4.0</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.songoda</groupId>
|
|
||||||
<artifactId>UltimateStacker</artifactId>
|
|
||||||
<version>2.1.6</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.bgsoftware</groupId>
|
|
||||||
<artifactId>wildstacker</artifactId>
|
|
||||||
<version>3.5.1</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.DeadSilenceIV</groupId>
|
|
||||||
<artifactId>AdvancedChestsAPI</artifactId>
|
|
||||||
<version>2.2</version>
|
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
Loading…
Reference in New Issue
Block a user