diff --git a/Mineplex.Core.Common/src/mineplex/core/common/util/UtilBlockText.java b/Mineplex.Core.Common/src/mineplex/core/common/util/UtilBlockText.java index f9ee1658..f2e0cafc 100644 --- a/Mineplex.Core.Common/src/mineplex/core/common/util/UtilBlockText.java +++ b/Mineplex.Core.Common/src/mineplex/core/common/util/UtilBlockText.java @@ -309,11 +309,11 @@ public class UtilBlockText }); alphabet.put('i', new int[][] { - {1,1,1}, - {0,1,0}, - {0,1,0}, - {0,1,0}, - {1,1,1} + {1,1,1,1,1}, + {0,0,1,0,0}, + {0,0,1,0,0}, + {0,0,1,0,0}, + {1,1,1,1,1} }); alphabet.put('j', new int[][] { @@ -477,6 +477,38 @@ public class UtilBlockText {1,1,1}, {0,0,0} }); + alphabet.put(',', new int[][] + { + {0}, + {0}, + {0}, + {1}, + {1} + }); + alphabet.put('#', new int[][] + { + {0,1,0,1,0}, + {1,1,1,1,1}, + {0,1,0,1,0}, + {1,1,1,1,1}, + {0,1,0,1,0} + }); + alphabet.put('\"', new int[][] + { + {1,0,1}, + {1,0,1}, + {0,0,0}, + {0,0,0}, + {0,0,0} + }); + alphabet.put('\'', new int[][] + { + {1}, + {1}, + {0}, + {0}, + {0} + }); // THIS IS A SINGLE SPACE alphabet.put('|', new int[][] diff --git a/Nautilus.Game.Arcade/src/nautilus/game/arcade/managers/lobby/LobbyManager.java b/Nautilus.Game.Arcade/src/nautilus/game/arcade/managers/lobby/LobbyManager.java index 33ae2b06..192ca582 100644 --- a/Nautilus.Game.Arcade/src/nautilus/game/arcade/managers/lobby/LobbyManager.java +++ b/Nautilus.Game.Arcade/src/nautilus/game/arcade/managers/lobby/LobbyManager.java @@ -321,8 +321,8 @@ public abstract class LobbyManager implements Listener else if (_advertiseStage == 6) { writeAdvertiseLine("WE REALLY DID", 0, 159, (byte) 4); - writeAdvertiseLine("SAY 'FINE, WE'LL", 1, 159, (byte) 15); - writeAdvertiseLine("DO IT OURSELVES'", 2, 159, (byte) 4); + writeAdvertiseLine("SAY \"FINE, WE'LL", 1, 159, (byte) 15); + writeAdvertiseLine("DO IT OURSELVES\"", 2, 159, (byte) 4); writeAdvertiseLine("tiny.cc/ReviveCS", 4, 159, (byte) 15); }