Fix automatic setting of item lines (Fixes #308)

This commit is contained in:
Phoenix616 2020-05-06 20:17:50 +01:00
parent 3bf54529db
commit 8e6bc01d97
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class SignCreate implements Listener {
return;
}
for (byte i = 0; i < preEvent.getSignLines().length && i < 3; ++i) {
for (byte i = 0; i < preEvent.getSignLines().length && i < 4; ++i) {
event.setLine(i, preEvent.getSignLine(i));
}