Skip to content

Commit dca02c7

Browse files
committed
please
1 parent bd1ed6b commit dca02c7

File tree

3 files changed

+22
-26
lines changed

3 files changed

+22
-26
lines changed

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WholesomeEndTexts Changelog
22
## v1.1.3
3-
- Android support is being held together by mere shoelaces.
3+
- Finally worked around how to play nice with Coco2D's tendency to ignore text alignment with multi-line quotes on Android. As such, quotes are no longer forcibly downscaled. If your `bigFont.fnt` is somehow monospaced, that's on you.
44
## v1.1.2
55
- Futureproofing the mod against unexpected `m_fields` behavior between Geode versions. Also raised the minimum Geode version requirement.
66
## v1.1.1

resources/technoblade.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
Skyblock teaches us that no matter how ridiculous the odds may seem, within us resides the power to overcome these challenges and achieve something beautiful. And one day, we'll look back at where we started, and be amazed by how far we've come.
2-
WE WIN THESE!
3-
Technoblade never dies!
4-
I'M SO GOOD AT VIDEO GAMES!!!
5-
I can tryhard any game.
6-
Stay in school, kids. It makes you better at PvP.
7-
For my part, I've realized that rank number 1 isn't an achievement. It's a prison which forces you to dedicate your life to defending a temporary title.
8-
alright guys if my mic is muted say canada
9-
All part of my master plan!
10-
For reference, it took me three attempts to put on my shirt.
11-
one of us, one of us, one of us, one of us!
12-
I understand now that it is only with a worthy rival that one can reach their fullest potential.
13-
Most opportunities are created by luck. It takes skill to grasp those opportunities and turn it into success.
14-
As you can see, my FPS is around 18 or so, which means we can definitely take this further.
15-
First try, part two!
16-
And now we're gonna win video games... with the power of friendship! And also fireballs.
17-
All right, you know what? You tried. I'll give you that.
18-
You see, back in high school when I didn't have a huge ego, a lesbian referred to me as 'actually pretty funny', and my ego has been coastin' ever since.
19-
YEAH! ANYTHING IS POSSIBLE! THE SKY'S THE LIMIT! YOU CAN ACHIEVE ANYTHING!
20-
If you wish to defeat me, train for another 100 years.
1+
''Skyblock teaches us that no matter how ridiculous the odds may seem, within us resides the power to overcome these challenges and achieve something beautiful. And one day, we'll look back at where we started, and be amazed by how far we've come."
2+
''WE WIN THESE!"
3+
''Technoblade never dies!"
4+
''I'M SO GOOD AT VIDEO GAMES!!!"
5+
''I can tryhard any game."
6+
''Stay in school, kids. It makes you better at PvP."
7+
''For my part, I've realized that rank number 1 isn't an achievement. It's a prison which forces you to dedicate your life to defending a temporary title."
8+
''alright guys if my mic is muted say canada"
9+
''All part of my master plan!"
10+
''For reference, it took me three attempts to put on my shirt."
11+
''one of us, one of us, one of us, one of us!"
12+
''I understand now that it is only with a worthy rival that one can reach their fullest potential."
13+
''Most opportunities are created by luck. It takes skill to grasp those opportunities and turn it into success."
14+
''As you can see, my FPS is around 18 or so, which means we can definitely take this further."
15+
''First try, part two!"
16+
''And now we're gonna win video games... with the power of friendship! And also fireballs."
17+
''All right, you know what? You tried. I'll give you that."
18+
''You see, back in high school when I didn't have a huge ego, a lesbian referred to me as 'actually pretty funny', and my ego has been coastin' ever since."
19+
''YEAH! ANYTHING IS POSSIBLE! THE SKY'S THE LIMIT! YOU CAN ACHIEVE ANYTHING!"
20+
''If you wish to defeat me, train for another 100 years."

src/main.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ float compactEndscreenFallbackPosition = CCDirector::get()->getWinSize().width *
3434
std::ifstream file(pathRogers);
3535
std::string technoblade;
3636
while (std::getline(file, technoblade)) {
37-
quotes.push_back(fmt::format("''{}\"", technoblade));
37+
quotes.push_back(technoblade);
3838
} // technically i can write two one-time use boolean variables to allow people to toggle these things on and off as they please without the quotes adding themselves multiple times into the vector, but i'd rather add the "restart required" barrier just to be extra safe
3939
}
4040

@@ -268,10 +268,6 @@ class $modify(MyEndLevelLayer, EndLevelLayer) {
268268
if (strcmp("BELIEVE", randomString) == 0) { scale = 1.5f; }
269269
else if (strcmp("endTextLabel->setString(randomString.c_str(), true);", randomString) == 0) { scale = 0.4f;}
270270
else if (scale > Mod::get()->getSettingValue<double>("maxScale")) { scale = Mod::get()->getSettingValue<double>("maxScale"); }
271-
// #ifdef GEODE_IS_MOBILE
272-
// std::regex quotePattern("\".+\"");
273-
// if (std::regex_match(std::string(randomString), quotePattern)) { scale = scale * .5f; }
274-
// #endif
275271

276272
endTextLabel->setScale(scale);
277273
endTextLabel->setWidth(336.f); // width of end screen minus 20px

0 commit comments

Comments
 (0)