Skip to content

Commit cf8cf0e

Browse files
committed
ron from delaware
1 parent 3455cfa commit cf8cf0e

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

.emacs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(custom-set-variables
2+
'(setq mode-require-final-newline nil))

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# DeathScreenTweaks Changelog
2+
## v1.8.2
3+
- Update SNL quote bank.
4+
- Fix some rare crash.
25
## v1.8.1
36
- Use sprites for the coins shown in `Show Collected Coins`.
47
- To restore past behavior, toggle `Use ASCII Art for Coins Instead`.

mod.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"geode": "4.7.0",
2+
"geode": "4.10.0",
33
"gd": {
44
"win": "2.2074",
55
"mac": "2.2074",
66
"ios": "2.2074",
77
"android": "2.2074"
88
},
9-
"version": "v1.8.1",
9+
"version": "v1.8.2",
1010
"id": "raydeeux.deathscreentweaks",
1111
"name": "DeathScreenTweaks",
1212
"developers": [
@@ -655,4 +655,4 @@
655655
"community": "https://discord.gg/WqZBYdBWZW",
656656
"homepage": "https://discord.com/channels/822510988409831486/1206371881222144020"
657657
}
658-
}
658+
}

resources/snl50.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ They bumped into me, and I said 'Oh, I'm sorry', which is INSANE...''
4747
We're gonna take it out, test it for diseases, then that thing's going right in the trash. MAYBE.''
4848
Woah, what is this place? Am I... dead?''
4949
What is it about me that they don't understand? What is it about me that they don't get?''
50-
Oof. I don't think I can recover from that one. Goodbye, everybody.''
50+
Oof. I don't think I can recover from that one. Goodbye, everybody.''
51+
Damn, man, your breath smell like gasoline!''

src/PlayLayer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class $modify(MyPlayLayer, PlayLayer) {
9494
PlayLayer::togglePracticeMode(practiceMode);
9595
manager->lastDeathPercent = -10.f;
9696
for (auto [coin, collected] : manager->coins) {
97-
manager->coins.at(coin) = false;
97+
collected = false;
9898
}
9999
if (!manager->channel) return;
100100
STOP_MANAGER_CHANNEL
@@ -103,7 +103,7 @@ class $modify(MyPlayLayer, PlayLayer) {
103103
PlayLayer::resetLevelFromStart();
104104
manager->lastDeathPercent = -10.f;
105105
for (auto [coin, collected] : manager->coins) {
106-
manager->coins.at(coin) = false;
106+
collected = false;
107107
}
108108
if (!manager->channel) return;
109109
if (!getModBool("enabled") || !getModBool("sisyphusStopSFXOnRespawn")) return;

0 commit comments

Comments
 (0)