Skip to content

Instantly share code, notes, and snippets.

View calebpower's full-sized avatar

Caleb L. Power calebpower

View GitHub Profile
@calebpower
calebpower / BukkitSerialization.java
Created April 3, 2020 08:19 — forked from graywolf336/BukkitSerialization.java
Serialize and deserialize the player's inventory, including armor and content.
/**
* Converts the player inventory to a String array of Base64 strings. First string is the content and second string is the armor.
*
* @param playerInventory to turn into an array of strings.
* @return Array of strings: [ main content, armor content ]
* @throws IllegalStateException
*/
public static String[] playerInventoryToBase64(PlayerInventory playerInventory) throws IllegalStateException {
//get the main content part, this doesn't return the armor
String content = toBase64(playerInventory);