Skip to content

Commit c5098e0

Browse files
THE WRLD ON DRUGS TEN THOUSAND DOLLAR PLATES THOUSAND DOLLAR PLATES FINE CHINA SHORTY LIKE A SHORTY LIKE A THOUSAND DOLLAR PLATE FINE CHINA TELL HER SHE BEAUTIFUL EVERYDAY I REMIND HER THEN I JUMP IN HER PUSSY LIKE A LAKE IM A DIVER AND HER LAST MAN WAS A PUSSY HAD A VAGINA
1 parent 8a27343 commit c5098e0

5 files changed

Lines changed: 23 additions & 2 deletions

File tree

assets/config/credits.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<credits>
33
<user name="TechnikTil" icon="techniktil">
4-
<description>i coded 50% of TechNotDrip Engine. including these credits, so i deserve to be on the top</description>
4+
<description>i coded 50% of TechNotDrip Engine.</description> <!-- including these credits, so i deserve to be on the top (TOP AYO FREAK ALERT HERE) -->
55
<socials>
66
<github contributor="true">TechnikTil</github>
77
<twitter>https://twitter.com/TechnikTil</twitter>
@@ -12,6 +12,7 @@
1212
<user name="CrusherNotDrip" icon="crushernotdrip">
1313
<description>coded everything thats actually important lol</description>
1414
<socials>
15+
<website>TODO: GET TIL TO REPONDE TO MY DM FOR MY GODDAMN URL</website>
1516
<github contributor="true">CrusherNotDrip</github>
1617
<twitter>https://twitter.com/CrusherNotDrip</twitter>
1718
<bluesky>https://bsky.app/profile/crushernotdrip.github.io/</bluesky>
4.26 KB
Loading
11.6 KB
Binary file not shown.

src/funkin/objects/ui/freeplay/FreeplayDJ.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ class FreeplayDJ extends FunkinSprite
128128
public function drawVisualizer():Void
129129
{
130130
// TODO: work on this when my animate decides to work
131+
// bro is your fucking animate ever gonna work lil brah
131132
}
132133

133134
override public function playAnimation(name:String, ?restart:Bool = false, ?stunAnimations:Bool = false, ?reversed:Bool = false):Void

src/funkin/states/ui/CreditsState.hx

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ class CreditsState extends FunkinState
157157
#if FLX_MOUSE
158158
FlxG.mouse.visible = true;
159159
#end
160+
160161
changeItem();
161162
}
162163

@@ -167,6 +168,7 @@ class CreditsState extends FunkinState
167168
#if FLX_MOUSE
168169
FlxG.mouse.visible = false;
169170
#end
171+
170172
FlxG.switchState(MenuState.new);
171173
}
172174

@@ -195,6 +197,12 @@ class CreditsState extends FunkinState
195197
// MOUSE
196198

197199
#if FLX_MOUSE
200+
if (FlxG.mouse.wheel != 0)
201+
{
202+
changeItem(-FlxG.mouse.wheel);
203+
// TODO: scale for wheel, it wouldnt work for me even with a good way to check so like idfk.
204+
}
205+
198206
if (FlxG.mouse.justPressed)
199207
{
200208
if (FlxG.mouse.overlaps(arrowUp))
@@ -349,7 +357,18 @@ class CreditsState extends FunkinState
349357
commitsGet.setHeader("User-Agent", "request");
350358
commitsGet.request();
351359

352-
var commitList:Array<Dynamic> = cast Json.parse(commitsGet.responseData);
360+
var commitList:Array<Dynamic> = [];
361+
362+
try
363+
{
364+
// when my wifi down it be returning nothing and try catching the actual request didnt work so
365+
commitList = cast Json.parse(commitsGet.responseData);
366+
}
367+
catch (e:Exception)
368+
{
369+
trace('Could not parse the commit list!');
370+
}
371+
353372
for (commit in commitList)
354373
{
355374
denominator++;

0 commit comments

Comments
 (0)