Skip to content

Commit ae96c82

Browse files
committed
L Farts
I'll miss you buddy...
1 parent f2a18c2 commit ae96c82

3 files changed

Lines changed: 4 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Fixed Random song being overridden incorrectly.
1818
- Fixed GF's Left Pose Repeating.
1919

20+
### Removed
21+
22+
- Removed the Fart Chance.
23+
2024

2125

2226
## [1.1.0-expansion] - (2026-04-01)

scripts/songs/lit-up-remnants.hxc

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class LitUpRemnantsMixSong extends Song
1414

1515
var outro:Bool = false;
1616
var sequence:SongSequence;
17-
var fart:FunkinSound;
1817

1918
public function new()
2019
{
@@ -137,8 +136,6 @@ class LitUpRemnantsMixSong extends Song
137136
PlayState.instance.currentStage.add(mist6);
138137

139138
PlayState.instance.currentStage.refresh(); // Apply z-index.
140-
141-
fart = FunkinSound.load(Paths.sound('gameplay/secret/fart'), 1);
142139
}
143140

144141
function mistOn(duration:Float)
@@ -182,8 +179,6 @@ class LitUpRemnantsMixSong extends Song
182179
{
183180
super.onSongRetry(event);
184181

185-
if (fart?.isPlaying) fart.stop();
186-
187182
if (mist0.alpha > 0 && !RemnantsOptions.getPerformanceOption()) mistOff(1);
188183

189184
if (outro)
@@ -257,20 +252,6 @@ class LitUpRemnantsMixSong extends Song
257252
time: Conductor.instance.getBeatTimeInMs(96) / 1000,
258253
callback: () -> {
259254
mistOn(3);
260-
261-
if (FlxG.random.bool(0.67) && Save.instance.hasBeatenSong(this.id, null, this.variation))
262-
{
263-
mist0.color = 0xFF748500;
264-
mist1.color = 0xFF748500;
265-
mist2.color = 0xFF748500;
266-
mist3.color = 0xFF748500;
267-
mist4.color = 0xFF748500;
268-
mist5.color = 0xFF748500;
269-
mist6.color = 0xFF748500;
270-
271-
fart.play();
272-
FunkinSound.playOnce(Paths.sound('gameplay/secret/secret', "shared"), 1);
273-
}
274255
}
275256
});
276257

-509 KB
Binary file not shown.

0 commit comments

Comments
 (0)