3
3
import org .bukkit .Bukkit ;
4
4
import org .bukkit .GameMode ;
5
5
import org .bukkit .Material ;
6
+ import org .bukkit .Tag ;
6
7
import org .bukkit .block .Block ;
7
8
import org .bukkit .block .BlockFace ;
8
9
import org .bukkit .entity .Player ;
@@ -35,7 +36,7 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
35
36
Action action = event .getAction ();
36
37
Player player = event .getPlayer ();
37
38
// Check action correctness
38
- if (action == Action .RIGHT_CLICK_BLOCK && player .getInventory ().getItemInMainHand ().getType () == Material . SIGN ) {
39
+ if (action == Action .RIGHT_CLICK_BLOCK && Tag . SIGNS . isTagged ( player .getInventory ().getItemInMainHand ().getType ())) {
39
40
if (player .getGameMode ().equals (GameMode .SPECTATOR )) {
40
41
return ;
41
42
}
@@ -67,15 +68,15 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
67
68
// Send message
68
69
Utils .sendMessages (player , Config .getLang ("locked-quick" ));
69
70
// Put sign on
70
- Block newsign = Utils .putSignOn (block , blockface , Config .getDefaultPrivateString (), player .getName ());
71
+ Block newsign = Utils .putSignOn (block , blockface , Config .getDefaultPrivateString (), player .getName (), player . getInventory (). getItemInMainHand (). getType () );
71
72
Utils .resetCache (block );
72
73
// Cleanups - UUID
73
74
if (Config .isUuidEnabled ()){
74
75
Utils .updateLineByPlayer (newsign , 1 , player );
75
76
}
76
77
// Cleanups - Expiracy
77
- if (Config .isLockExpire ()){
78
- if (player .hasPermission ("lockettepro.noexpire" )){
78
+ if (Config .isLockExpire ()) {
79
+ if (player .hasPermission ("lockettepro.noexpire" )) {
79
80
Utils .updateLineWithTime (newsign , true ); // set created to -1 (no expire)
80
81
} else {
81
82
Utils .updateLineWithTime (newsign , false ); // set created to now
@@ -86,12 +87,12 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
86
87
// Not locked, (is locked door nearby), is owner of locked door nearby
87
88
Utils .removeASign (player );
88
89
Utils .sendMessages (player , Config .getLang ("additional-sign-added-quick" ));
89
- Utils .putSignOn (block , blockface , Config .getDefaultAdditionalString (), "" );
90
+ Utils .putSignOn (block , blockface , Config .getDefaultAdditionalString (), "" , player . getInventory (). getItemInMainHand (). getType () );
90
91
Dependency .logPlacement (player , block .getRelative (blockface ));
91
- } else if (LocketteProAPI .isOwner (block , player )){
92
+ } else if (LocketteProAPI .isOwner (block , player )) {
92
93
// Locked, (not locked door nearby), is owner of locked block
93
94
Utils .removeASign (player );
94
- Utils .putSignOn (block , blockface , Config .getDefaultAdditionalString (), "" );
95
+ Utils .putSignOn (block , blockface , Config .getDefaultAdditionalString (), "" , player . getInventory (). getItemInMainHand (). getType () );
95
96
Utils .sendMessages (player , Config .getLang ("additional-sign-added-quick" ));
96
97
Dependency .logPlacement (player , block .getRelative (blockface ));
97
98
} else {
@@ -106,7 +107,7 @@ public void onPlayerQuickLockChest(PlayerInteractEvent event){
106
107
// Manual protection
107
108
@ EventHandler (priority = EventPriority .NORMAL )
108
109
public void onManualLock (SignChangeEvent event ){
109
- if (event .getBlock ().getType () != Material . WALL_SIGN ) return ;
110
+ if (! Tag . WALL_SIGNS . isTagged ( event .getBlock ().getType ()) ) return ;
110
111
String topline = event .getLine (0 );
111
112
Player player = event .getPlayer ();
112
113
/* Issue #46 - Old version of Minecraft trim signs in unexpected way.
@@ -177,7 +178,7 @@ public void onManualLock(SignChangeEvent event){
177
178
// Player select sign
178
179
@ EventHandler (priority = EventPriority .LOW )
179
180
public void playerSelectSign (PlayerInteractEvent event ){
180
- if (event .getAction () == Action .RIGHT_CLICK_BLOCK && event .getClickedBlock ().getType () == Material . WALL_SIGN ) {
181
+ if (event .getAction () == Action .RIGHT_CLICK_BLOCK && event .hasBlock () && Tag . WALL_SIGNS . isTagged ( event . getClickedBlock ().getType ())) {
181
182
Block block = event .getClickedBlock ();
182
183
Player player = event .getPlayer ();
183
184
if (!player .hasPermission ("lockettepro.edit" )) return ;
0 commit comments