3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-03 22:18:04 +02:00
Dieser Commit ist enthalten in:
Matsv 2017-05-10 18:00:18 +02:00
Commit 00b4396f86
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -8,7 +8,7 @@ IRC: [#viaversion](http://irc.spi.gt/iris/?channels=viaversion) on irc.spi.gt fo
Supported Versions:
[![Table] (http://i.imgur.com/SVVhFQ4.png)](http://i.imgur.com/SVVhFQ4.png)
![Table (http://i.imgur.com/SVVhFQ4.png)](http://i.imgur.com/SVVhFQ4.png)
On Bukkit you may also use ProtocolSupport, but ensure you have the right build for your server version.

Datei anzeigen

@ -303,7 +303,7 @@ public class SpawnPackets {
packet.write(Type.VAR_INT, 0);
packet.write(Type.ITEM, new Item(item, (byte) 1, (short) 0, null));
try {
packet.send(Protocol1_9TO1_8.class);
packet.send(Protocol1_9TO1_8.class, true, true);
} catch (Exception e) {
e.printStackTrace();
}

Datei anzeigen

@ -42,7 +42,7 @@ public class SpongeViaLoader implements ViaPlatformLoader {
new BlockListener(plugin).register();
if (plugin.getConf().isItemCache()) {
Via.getPlatform().runRepeatingSync(new HandItemCache(), 2L); // Updates player's items :)
Via.getPlatform().runRepeatingSync(new HandItemCache(), 2L); // Updates players items :)
HandItemCache.CACHE = true;
}