Some helpful comments for future modding

This commit is contained in:
libraryaddict 2020-06-13 22:39:11 +12:00
parent aa913b48e6
commit a19b9e4023
No known key found for this signature in database
GPG Key ID: 052E4FBCD257AEA4

@ -68,11 +68,14 @@ public class ModdedManager {
s.serializeVarInt(output, channels.size()); s.serializeVarInt(output, channels.size());
for (String channel : channels) { for (String channel : channels) {
// Here's the channel name
s.serializeString(output, channel.substring(0, channel.indexOf("|"))); s.serializeString(output, channel.substring(0, channel.indexOf("|")));
// Here's the channel version, yes <Client Mod> we're using your version!
s.serializeString(output, channel.substring(channel.indexOf("|") + 1)); s.serializeString(output, channel.substring(channel.indexOf("|") + 1));
} }
// We want to declare some entities // We want to declare some entities. Wait. No we don't?
// Weird, am I missing something..
s.serializeVarInt(output, 0); s.serializeVarInt(output, 0);
// Only this one thx // Only this one thx
@ -103,7 +106,9 @@ public class ModdedManager {
// Write the entity names and ids // Write the entity names and ids
for (Map.Entry<NamespacedKey, ModdedEntity> entry : entities.entrySet()) { for (Map.Entry<NamespacedKey, ModdedEntity> entry : entities.entrySet()) {
// We are registering librarymod:librarian
s.serializeString(output, entry.getKey().toString()); s.serializeString(output, entry.getKey().toString());
// It's got the type ID of 85
s.serializeVarInt(output, entry.getValue().getTypeId()); s.serializeVarInt(output, entry.getValue().getTypeId());
} }
@ -116,7 +121,7 @@ public class ModdedManager {
// No.. Not even blocked // No.. Not even blocked
s.serializeVarInt(output, 0); s.serializeVarInt(output, 0);
// Or dummied // Or dummied. What is dummied anyways. What are these others?
s.serializeVarInt(output, 0); s.serializeVarInt(output, 0);
} }
catch (IOException e) { catch (IOException e) {