Skip to content

Commit 2eb55dd

Browse files
committed
1.11.4
1 parent 2e9615b commit 2eb55dd

4 files changed

Lines changed: 30 additions & 30 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'dev.pixelstudios'
9-
version = '1.11.3'
9+
version = '1.11.4'
1010

1111
repositories {
1212
mavenCentral()

src/main/java/dev/pixelstudios/xutils/Hooks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class Hooks {
1313
private final Set<String> HOOKS = new HashSet<>();
1414

1515
public boolean register(String plugin, Runnable function) {
16-
if (!Bukkit.getPluginManager().isPluginEnabled(plugin) || HOOKS.contains(plugin)) {
16+
if (Bukkit.getPluginManager().getPlugin(plugin) == null || HOOKS.contains(plugin)) {
1717
return false;
1818
}
1919

src/main/java/dev/pixelstudios/xutils/menu/Menu.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public abstract class Menu implements InventoryHolder {
5858
@Setter
5959
private boolean autoUpdate = true;
6060
@Setter
61-
private boolean updateTitle = true;
61+
private boolean updateTitle = false;
6262
@Setter
6363
private int updateInterval = 20;
6464
@Setter

src/main/java/dev/pixelstudios/xutils/text/FontInfo.java

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@
99
@RequiredArgsConstructor
1010
public enum FontInfo {
1111

12-
A('A', 5), a('a', 5),
13-
B('B', 5), b('b', 5),
14-
C('C', 5), c('c', 5),
15-
D('D', 5), d('d', 5),
16-
E('E', 5), e('e', 5),
17-
F('F', 5), f('f', 4),
18-
G('G', 5), g('g', 5),
19-
H('H', 5), h('h', 5),
20-
I('I', 3), i('i', 1),
21-
J('J', 5), j('j', 5),
22-
K('K', 5), k('k', 4),
23-
L('L', 5), l('l', 1),
24-
M('M', 5), m('m', 5),
25-
N('N', 5), n('n', 5),
26-
O('O', 5), o('o', 5),
27-
P('P', 5), p('p', 5),
28-
Q('Q', 5), q('q', 5),
29-
R('R', 5), r('r', 5),
30-
S('S', 5), s('s', 5),
31-
T('T', 5), t('t', 4),
32-
U('U', 5), u('u', 5),
33-
V('V', 5), v('v', 5),
34-
W('W', 5), w('w', 5),
35-
X('X', 5), x('x', 5),
36-
Y('Y', 5), y('y', 5),
37-
Z('Z', 5), z('z', 5),
12+
A('A', 5), a('a', 5), A_SMALL('ᴀ', 5),
13+
B('B', 5), b('b', 5), B_SMALL('ʙ', 5),
14+
C('C', 5), c('c', 5), C_SMALL('ᴄ', 5),
15+
D('D', 5), d('d', 5), D_SMALL('ᴅ', 5),
16+
E('E', 5), e('e', 5), E_SMALL('ᴇ', 5),
17+
F('F', 5), f('f', 4), F_SMALL('ꜰ', 5),
18+
G('G', 5), g('g', 5), G_SMALL('ɢ', 5),
19+
H('H', 5), h('h', 5), H_SMALL('ʜ', 5),
20+
I('I', 3), i('i', 1), I_SMALL('ɪ', 3),
21+
J('J', 5), j('j', 5), J_SMALL('ᴊ', 5),
22+
K('K', 5), k('k', 4), K_SMALL('ᴋ', 5),
23+
L('L', 5), l('l', 2), L_SMALL('ʟ', 5),
24+
M('M', 5), m('m', 5), M_SMALL('ᴍ', 5),
25+
N('N', 5), n('n', 5), N_SMALL('ɴ', 5),
26+
O('O', 5), o('o', 5), O_SMALL('ᴏ', 5),
27+
P('P', 5), p('p', 5), P_SMALL('ᴘ', 5),
28+
Q('Q', 5), q('q', 5), Q_SMALL('ǫ', 5),
29+
R('R', 5), r('r', 5), R_SMALL('ʀ', 5),
30+
S('S', 5), s('s', 5), S_SMALL('s', 5),
31+
T('T', 5), t('t', 3), T_SMALL('ᴛ', 5),
32+
U('U', 5), u('u', 5), U_SMALL('ᴜ', 5),
33+
V('V', 5), v('v', 5), V_SMALL('ᴠ', 5),
34+
W('W', 5), w('w', 5), W_SMALL('ᴡ', 5),
35+
X('X', 5), x('x', 5), X_SMALL('x', 5),
36+
Y('Y', 5), y('y', 5), Y_SMALL('ʏ', 5),
37+
Z('Z', 5), z('z', 5), Z_SMALL('ᴢ', 5),
3838

3939
NUM_1('1', 5),
4040
NUM_2('2', 5),
@@ -81,7 +81,7 @@ public enum FontInfo {
8181
COMMA(',', 1),
8282
SPACE(' ', 3),
8383

84-
DEFAULT('a', 4);
84+
DEFAULT('a', 5);
8585

8686
private static final FontInfo[] VALUES = values();
8787

0 commit comments

Comments
 (0)