Skip to content

Commit

Permalink
Merge branch 'main' into origin/ver/1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed May 23, 2023
2 parents 7684e1a + 5c3ed93 commit c69fb69
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bugs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ body:
- 1.8.8
- 1.12.2
- 1.16.5
- 1.19.3
- 1.19.4
validations:
required: true
- type: dropdown
Expand Down Expand Up @@ -85,4 +85,4 @@ body:
- label: I ticked all the boxes without actually reading them
required: false
- label: My version of Minecraft is supported by CrazyCrew.
required: true
required: true
47 changes: 0 additions & 47 deletions .github/workflows/build_release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ val repo = if (beta) "beta" else "releases"

val msg = "New version of ${rootProject.name} is ready! <@&929463450214735912>"

rootProject.version = "1.4.20.4"
rootProject.version = "1.4.20.5"

val download = "https://modrinth.com/$extension/${rootProject.name.lowercase()}/version/${rootProject.version}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.EntityChangeBlockEvent;
import org.bukkit.event.entity.ItemSpawnEvent;
Expand All @@ -44,7 +45,7 @@ public class EnvoyControl implements Listener {

private final Random random = new Random();

@EventHandler(ignoreCancelled = true)
@EventHandler(priority = EventPriority.HIGH)
public void onPlayerClick(PlayerInteractEvent e) {
Player player = e.getPlayer();

Expand Down

0 comments on commit c69fb69

Please sign in to comment.