Pig Pen Cipher (Pig Pen Cipher)
This mod adds the Pig Pen Cipher to Minecraft as a new font, allowing players to encode and decode messages using the Pigpen Cipher. It can be used for books, fonts, chat messages, tooltips, and virtually any other text in the game.
Overview
The Pig Pen Cipher is a simple substitution cipher used to encode messages that use the English alphabet.
User Guide
Using the Cipher
The Pigpen Cipher, also known as a tic-tac-toe cipher, uses a key that looks like a tic-tac-toe board to encode/decode characters.
To encode a character using the Pigpen Cipher, you replace the character with the lines that surround it according to the key. For example, the letter A is represented as a backwards L shape, and E is represented as a square. A symbol with a dot inside requires using the version on the right; for instance, a square with a dot inside it represents the letter N. The eight lower characters follow similar rules, for instance, T is represented as an arrow pointing right, and W is represented as an arrow pointing down with a dot inside it. With some practice, the cipher becomes easier to understand.
Commands
If this mod is installed on a Forge server, players can utilize custom commands to interact with the Pigpen Cipher:
- /pigpen say - Posts a message in chat using the cipher. All players can use this command, and the plaintext version is logged in the server console.
- /pigpen hand - Renames the held item with the cipher. Limited to level 2 ops.
- /pigpen book (encode|decode) - Rewrites a held book to use the cipher, and can also turn encoded books into plaintext books. Limited to level 2 ops.
- /pigpen tile (encode|decode) <pos> - Rewrites a tile entity such as a sign to use the cipher. Limited to level 2 ops.
Code
If you're developing a mod or have access to code/scripting tools, you can apply the cipher to an ITextComponent by modifying the style of the component.
// MCP names not yet available
// func_240703_c_ = setStyle
// func_240719_a_ = setFontId
IFormattableTextComponent text = new StringTextComponent("Hello World");
text.func_240703_c_(text.getStyle().func_240719_a_(new ResourceLocation("pigpen", "pigpen")));
已复制!
Vanilla Commands & NBT
The mod allows the use of the Pigpen Cipher in any vanilla command that allows specifying a text component, by defining the font ID in the text properties. For example, it can be used in the give command or the title command.
/give @p stone{display:{Name:"[{\"text\":\"Hello\",\"italic\":false,\"color\":\"gold\",\"font\":\"pigpen:pigpen\"}]"}} 1
/title @a title {"text":"Hello","font":"pigpen:pigpen"}
已复制!
截图:
PigPen-neoforge-1.21.1-21.1.2
- Fix maven info.
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-forge-1.21.1-21.1.2
- Fix maven info.
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-fabric-1.21.1-21.1.2
- Fix maven info.
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-neoforge-1.21.1-21.1.1
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-forge-1.21.1-21.1.1
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-fabric-1.21.1-21.1.1
This project is made possible by [Patreon](https://www.patreon.com/Darkhax?pigpen) support from players like you. Thank you!
- lothrazar
- Spencer Gilbert
- mums spaghetti
- Pongo Sapiens
- noobanidus
- Darkosto
PigPen-NeoForge-1.20.4-17.0.3
PigPen-Forge-1.20.4-17.0.3
PigPen-Fabric-1.20.4-17.0.3
PigPen-NeoForge-1.20.4-17.0.2
PigPen-Forge-1.20.4-17.0.2
PigPen-Fabric-1.20.4-17.0.2
PigPen-NeoForge-1.20.3-16.0.2
PigPen-Forge-1.20.3-16.0.2
PigPen-Fabric-1.20.3-16.0.2
PigPen-NeoForge-1.20.2-15.0.1
PigPen-Forge-1.20.2-15.0.1
PigPen-Fabric-1.20.2-15.0.1
PigPen-NeoForge-1.20.2-15.0.3
PigPen-Forge-1.20.2-15.0.3
PigPen-Fabric-1.20.2-15.0.3
PigPen-NeoForge-1.20.2-15.0.2
PigPen-Forge-1.20.2-15.0.2
PigPen-Fabric-1.20.2-15.0.2
PigPen-NeoForge-1.20.2-15.0.1
PigPen-Forge-1.20.2-15.0.1
PigPen-Fabric-1.20.2-15.0.1
PigPen-Forge-1.20.1-15.0.2
PigPen-Fabric-1.20.1-15.0.2
PigPen-Forge-1.20.1-15.0.1
PigPen-Fabric-1.20.1-15.0.1
PigPen-Forge-1.20-14.0.1
PigPen-Fabric-1.20-14.0.1
PigPen-Forge-1.19.4-13.0.2
<li>Add legacy font with old spacing values. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/8720acf" rel="nofollow">(8720acf)</a></li>
<li>Adjust spacing of characters to improve spacing and allow more characters per line. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/6eef9d3" rel="nofollow">(6eef9d3)</a></li>
<li>Fix support for space characters. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/38ac86c" rel="nofollow">(38ac86c)</a></li>
<li>Update build dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/1f58ce2" rel="nofollow">(1f58ce2)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Spencer Gilbert</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
<li>fbigummy</li>
</ul>
PigPen-Fabric-1.19.4-13.0.2
<li>Add legacy font with old spacing values. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/8720acf" rel="nofollow">(8720acf)</a></li>
<li>Adjust spacing of characters to improve spacing and allow more characters per line. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/6eef9d3" rel="nofollow">(6eef9d3)</a></li>
<li>Fix support for space characters. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/38ac86c" rel="nofollow">(38ac86c)</a></li>
<li>Update build dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/1f58ce2" rel="nofollow">(1f58ce2)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Spencer Gilbert</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
<li>fbigummy</li>
</ul>
PigPen-Forge-1.19.4-13.0.1
<li>Port to MC 1.19.4 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/c329508" rel="nofollow">(c329508)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Spencer Gilbert</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
<li>fbigummy</li>
</ul>
PigPen-Fabric-1.19.4-13.0.1
<li>Port to MC 1.19.4 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/c329508" rel="nofollow">(c329508)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Spencer Gilbert</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
<li>fbigummy</li>
</ul>
PigPen-Forge-1.19.3-12.0.1
<li>Port to Minecraft 1.19.3 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/a20c665" rel="nofollow">(a20c665)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Markus B.</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19.3-12.0.1
<li>Port to Minecraft 1.19.3 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/a20c665" rel="nofollow">(a20c665)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Markus B.</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19.2-11.1.2
<li>Update build time dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ae60664" rel="nofollow">(ae60664)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19.2-11.1.2
<li>Update build time dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ae60664" rel="nofollow">(ae60664)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19.2-11.0.1
<li>Port to Minecraft 1.19.2 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ba1cb65" rel="nofollow">(ba1cb65)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19.2-11.0.1
<li>Port to Minecraft 1.19.2 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ba1cb65" rel="nofollow">(ba1cb65)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19.1-10.0.1
<li>Port to Minecraft 1.19.1 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/e30577b" rel="nofollow">(e30577b)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19.1-10.0.1
<li>Port to Minecraft 1.19.1 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/e30577b" rel="nofollow">(e30577b)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19-9.1.3
<li>Update dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ac819aa" rel="nofollow">(ac819aa)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19-9.1.3
<li>Update dependencies. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/ac819aa" rel="nofollow">(ac819aa)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19-9.0.2
<li>fix crash with forge 41.0.94+ (#2) <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/421f010" rel="nofollow">(421f010)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19-9.0.2
<li>fix crash with forge 41.0.94+ (#2) <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/421f010" rel="nofollow">(421f010)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.19-9.0.1
<li>Port to Minecraft 1.19 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/9946116" rel="nofollow">(9946116)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Fabric-1.19-9.0.1
<li>Port to Minecraft 1.19 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/9946116" rel="nofollow">(9946116)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
<li>Borealis German</li>
</ul>
PigPen-Forge-1.18.2-8.0.1
<li>Port to 1.18.2 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/da44eb9" rel="nofollow">(da44eb9)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-Fabric-1.18.2-8.0.1
<li>Port to 1.18.2 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/da44eb9" rel="nofollow">(da44eb9)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-Forge-1.18.1-7.0.2
<li>Fix maven publication metadata. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/6875259" rel="nofollow">(6875259)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-Fabric-1.18.1-7.0.2
<li>Fix maven publication metadata. <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/6875259" rel="nofollow">(6875259)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>Spencer Gilbert</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-Forge-1.18.1-7.0.1
<li>Port to 1.18.1 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/9a8cdbd" rel="nofollow">(9a8cdbd)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>arcanearchivesmod</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-Fabric-1.18.1-7.0.1
<li>Port to 1.18.1 <a href="https://github.com/Darkhax-Minecraft/PigPen/commit/9a8cdbd" rel="nofollow">(9a8cdbd)</a></li>
</ul>
<p>This project is made possible by <a href="https://www.patreon.com/Darkhax?pigpen" rel="nofollow">Patreon</a> support from players like you. Thank you!</p>
<ul>
<li>Rempler</li>
<li>lothrazar</li>
<li>SuperslowJelly</li>
<li>arcanearchivesmod</li>
<li>Adam Y</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-fabric-1.17.1-3.0.1
<li>Compiled for 1.17.1 - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>arcanearchivesmod</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-fabric-1.16.5-1.0.3
<li>Future proof Jenkinsfile (#1) - Jared</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>BigAl607</li>
<li>arcanearchivesmod</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-fabric-1.17-2.0.2
<li>Fix incorrect java version. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>BigAl607</li>
<li>arcanearchivesmod</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-fabric-1.16.5-1.0.2
<li>Fix curseforge project uploading. - Tyler Hancock</li>
<li>Port to Fabric. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>BigAl607</li>
<li>arcanearchivesmod</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.5-5.0.1
<li>Allow players to connect to server even if they don't have this mod. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>shadow Ultima devil Alpha</li>
<li>BigAl607</li>
<li>Edward </li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.4-4.0.4
<li>Updated Forge version. - Tyler Hancock</li>
<li>Fix tabs -> spaces. - Tyler Hancock</li>
<li>Moved to local maven. - Tyler Hancock</li>
<li>Update publishing script. - Tyler Hancock</li>
<li>Add logs to gitignore. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>shadow Ultima devil Alpha</li>
<li>BigAl607</li>
<li>Edward </li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.4-4.0.3
<li>Removed debug code. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>BigAl607</li>
<li>Edward </li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.4-4.0.2
<li>Fixed MCP mappings. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>Diablo Crasher</li>
<li>BigAl607</li>
<li>Edward </li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.3-3.0.1
<li>Ported to 1.16.3 - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>BigAl607</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.2-2.0.2
<li>Implemented schoomp based update webhooks. - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>BigAl607</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.2-2.0.1
<li>Ported to 1.16.2 - Tyler Hancock</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>BigAl607</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
PigPen-1.16.1-1.0.1
<li>1.16.1 release</li>
</ul>
<p>Like the mod? Consider following me on <a href="https://twitter.com/darkhaxdev" rel="nofollow">Twitter</a> and joining the <a href="/linkout?remoteUrl=https%253a%252f%252fdiscord.darkhax.net%252f" rel="nofollow">Discord</a></p>
<p>Huge thanks to my supporters on <a href="https://www.patreon.com/Darkhax?MCChangelog?PigPen" rel="nofollow">Patreon</a></p>
<ul>
<li>BigAl607</li>
<li>Pongo Sapiens</li>
<li>Darkosto</li>
</ul>
收录