@@ -140,7 +140,7 @@ public class TARDIS extends JavaPlugin {
140
140
private final HashMap <String , String > versions = new HashMap <>();
141
141
private final String versionRegex = "(\\ d+[.])+\\ d+" ;
142
142
private final Pattern versionPattern = Pattern .compile (versionRegex );
143
- private final String serverStr = "1.20.4 " ;
143
+ private final String serverStr = "1.20.6 " ;
144
144
private TARDISChatGUI jsonKeeper ;
145
145
private TARDISUpdateChatGUI updateChatGUI ;
146
146
// public TARDISFurnaceRecipe fornacis;
@@ -202,6 +202,9 @@ public class TARDIS extends JavaPlugin {
202
202
private NamespacedKey tardisIdKey ;
203
203
private NamespacedKey timeLordUuidKey ;
204
204
private NamespacedKey standUuidKey ;
205
+ private NamespacedKey interactionUuidKey ;
206
+ private NamespacedKey modelUuidKey ;
207
+ private NamespacedKey unaryKey ;
205
208
private NamespacedKey blueprintKey ;
206
209
private NamespacedKey sonicUuidKey ;
207
210
private NamespacedKey sonicChargeKey ;
@@ -306,6 +309,9 @@ public void onEnable() {
306
309
tardisIdKey = new NamespacedKey (this , "tardis_id" );
307
310
timeLordUuidKey = new NamespacedKey (this , "timelord_uuid" );
308
311
standUuidKey = new NamespacedKey (this , "stand_uuid" );
312
+ interactionUuidKey = new NamespacedKey (this , "interaction_uuid" );
313
+ modelUuidKey = new NamespacedKey (this , "model_uuid" );
314
+ unaryKey = new NamespacedKey (this , "unary" );
309
315
blueprintKey = new NamespacedKey (this , "blueprint" );
310
316
sonicUuidKey = new NamespacedKey (this , "sonic_uuid" );
311
317
sonicChargeKey = new NamespacedKey (this , "sonic_charge" );
@@ -452,7 +458,6 @@ public void onEnable() {
452
458
tardisMapper .enable ();
453
459
}
454
460
if (getConfig ().getBoolean ("modules.weeping_angels" )) {
455
- if (PaperLib .isPaper ()) {
456
461
getMessenger ().message (console , TardisModule .TARDIS , "Loading Weeping Angels Module" );
457
462
new TARDISWeepingAngels (this ).enable ();
458
463
if (!getConfig ().getBoolean ("conversions.all_in_one.weeping_angels" )) {
@@ -461,9 +466,6 @@ public void onEnable() {
461
466
conversions ++;
462
467
}
463
468
}
464
- } else {
465
- getLogger ().log (Level .WARNING , "The Weeping Angels Module requires Paper server or a suitable variant!" );
466
- }
467
469
}
468
470
if (getConfig ().getBoolean ("modules.vortex_manipulator" )) {
469
471
getMessenger ().message (console , TardisModule .TARDIS , "Loading Vortex Manipulator Module" );
@@ -1323,6 +1325,34 @@ public NamespacedKey getTimeLordUuidKey() {
1323
1325
public NamespacedKey getStandUuidKey () {
1324
1326
return standUuidKey ;
1325
1327
}
1328
+
1329
+ /**
1330
+ * Gets the console interaction UUID NamespacedKey
1331
+ *
1332
+ * @return the console interaction UUID NamespacedKey
1333
+ */
1334
+ public NamespacedKey getInteractionUuidKey () {
1335
+ return interactionUuidKey ;
1336
+ }
1337
+
1338
+ /**
1339
+ * Gets the console model UUID NamespacedKey
1340
+ *
1341
+ * @return the console model UUID NamespacedKey
1342
+ */
1343
+ public NamespacedKey getModelUuidKey () {
1344
+ return modelUuidKey ;
1345
+ }
1346
+
1347
+ /**
1348
+ * Gets the console interaction unary NamespacedKey
1349
+ *
1350
+ * @return the console interaction unary NamespacedKey
1351
+ */
1352
+ public NamespacedKey getUnaryKey () {
1353
+ return unaryKey ;
1354
+ }
1355
+
1326
1356
/**
1327
1357
* Gets the TARDIS Blueprint NamespacedKey
1328
1358
*
0 commit comments