diff options
author | Lulonaut <67191924+Lulonaut@users.noreply.github.com> | 2022-05-08 18:19:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 18:19:38 +0200 |
commit | 0d194f9596525b973e4da1fa6f86dac9accf6a52 (patch) | |
tree | d2fa37821719168e2839beb0b0e1787ffa58620c | |
parent | 272698ef9c885e76c0760d056193817a38345bd5 (diff) | |
download | NotEnoughUpdates-0d194f9596525b973e4da1fa6f86dac9accf6a52.tar.gz NotEnoughUpdates-0d194f9596525b973e4da1fa6f86dac9accf6a52.tar.bz2 NotEnoughUpdates-0d194f9596525b973e4da1fa6f86dac9accf6a52.zip |
Add pig to EntityViewer (#132)
* add pig to EntityViewer
* git my beloved
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/entityviewer/EntityViewer.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/entityviewer/EntityViewer.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/entityviewer/EntityViewer.java index e9075e47..130f6ee7 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/entityviewer/EntityViewer.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/entityviewer/EntityViewer.java @@ -67,6 +67,7 @@ public class EntityViewer extends GuiScreen { put("Cow", () -> new EntityCow(null)); put("Dragon", ()-> new EntityDragon(null)); put("Player", () -> new GUIClientPlayer()); + put("Pig", () -> new EntityPig(null)); }}; public static Map<String, EntityViewerModifier> validModifiers = new HashMap<String, EntityViewerModifier>() {{ |