Skip to content

Commit b5cba11

Browse files
Update copy
1 parent f0b960b commit b5cba11

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/main/java/gg/essential/ad/EssentialAd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private void createButton(
110110
int index = buttonList.size();
111111
if (screen instanceof GuiMainMenu) {
112112
texture = AdButton.TEXTURE_MAIN_MENU;
113-
tooltip = "Enhanced Minecraft\nfeatures, with Essential";
113+
tooltip = "Enhanced Minecraft\nfeatures, with Essential Mod";
114114

115115
GuiButton multiplayerButton = UButton.findButton(buttonList, MAIN_MENU_BUTTONS);
116116

src/main/java/gg/essential/ad/modal/AdModal.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,22 +186,22 @@ private String getTooltip(List<AdData.PartnerMod> partnerMods) {
186186
String tooltip;
187187
switch (partnerMods.size()) {
188188
case 0:
189-
tooltip = "Hmmm, it seems like you don't\nhave any partner mods installed...";
189+
tooltip = "Partnered mods receive\na share of purchases";
190190
break;
191191
case 1:
192-
tooltip = "%s\nand many more!";
192+
tooltip = "%s and other\npartnered mods receive\na share of purchases";
193193
break;
194194
case 2:
195-
tooltip = "%s, %s,\nand many more!";
195+
tooltip = "%s, %s,\nand other partnered mods\nreceive a share of purchases";
196196
break;
197197
case 3:
198-
tooltip = "%s, %s,\n%s, and many more!";
198+
tooltip = "%s, %s,\n%s, and other partnered mods\nreceive a share of purchases";
199199
break;
200200
case 4:
201-
tooltip = "%s, %s,\n%s, %s,\nand many more!";
201+
tooltip = "%s, %s,\n%s, %s,\nand other partnered mods\nreceive a share of purchases";
202202
break;
203203
case 5:
204-
tooltip = "%s, %s,\n%s, %s,\n%s, and many more!";
204+
tooltip = "%s, %s,\n%s, %s,\n%s, and other partnered mods\nreceive a share of purchases";
205205
break;
206206
default:
207207
throw new IllegalStateException();

src/main/java/gg/essential/ad/modal/TwoButtonModal.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void draw(Draw draw) {
4242

4343
public static TwoButtonModal postInstall() {
4444
return new TwoButtonModal(
45-
"Essential will install the next time\nyou launch the game.",
45+
"Essential Mod will install the next time\nyou launch the game.",
4646
(x, y, width) -> {
4747
ModalButton button = new ModalButton(x, y, width, ButtonColor.GRAY, "Quit & Install", EssentialUtil::shutdown);
4848
button.setTooltip("This will close your game!");
@@ -54,7 +54,7 @@ public static TwoButtonModal postInstall() {
5454

5555
public static TwoButtonModal removeAds() {
5656
return new TwoButtonModal(
57-
"Do you want to remove all\n'Get Essential' buttons?",
57+
"Do you want to remove all\n'Get Essential Mod' buttons?",
5858
(x, y, width) -> new ModalButton(x, y, width, ButtonColor.GRAY, "No", () -> {
5959
ModalManager.INSTANCE.setModal(null);
6060
}),

0 commit comments

Comments
 (0)