Skip to content

Commit

Permalink
Fix look not being cancellable
Browse files Browse the repository at this point in the history
  • Loading branch information
senseiwells committed Jun 10, 2022
1 parent b4c05b6 commit c34ee0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class MinecraftScriptEvents {
ON_ENTITY_SPAWN = new MinecraftScriptEvent("onEntitySpawn"),
ON_MOB_SPAWN = new MinecraftScriptEvent("onMobSpawn"),
ON_ENTITY_REMOVED = new MinecraftScriptEvent("onEntityRemoved"),
ON_PLAYER_LOOK = new MinecraftScriptEvent("onPlayerLook"),
ON_SCRIPT_PACKET = new MinecraftScriptEvent("onScriptPacket"),
ON_PLAYER_LOOK = new MinecraftScriptEvent("onPlayerLook", true),
ON_PICK_BLOCK = new MinecraftScriptEvent("onPickBlock", true),
ON_ATTACK = new MinecraftScriptEvent("onAttack", true),
ON_USE = new MinecraftScriptEvent("onUse", true),
Expand Down

0 comments on commit c34ee0a

Please sign in to comment.