Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
BUNCH OF FIXES
Browse files Browse the repository at this point in the history
  • Loading branch information
nebulazorua committed Jul 8, 2021
1 parent cdaf247 commit 3e33343
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion source/DialogueBox.hx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class DialogueBox extends FlxSpriteGroup
portraitLeft.visible = false;

portraitRight = new FlxSprite(Std.int(FlxG.width/2), 40);
if(PlayState.SONG.song.toLowerCase()=='thorns' || PlayState.SONG.song.toLowerCase()=='roses' || PlayState.SONG.song.toLowerCase()=='senpai' || PlayState.SONG.song.toLowerCase()=='2v200')
if(PlayState.SONG.song.toLowerCase()=='thorns' || PlayState.SONG.song.toLowerCase()=='roses' || PlayState.SONG.song.toLowerCase()=='senpai')
{
portraitRight.x = 0;
portraitRight.frames = Paths.getSparrowAtlas('weeb/bfPortrait');
Expand Down
7 changes: 4 additions & 3 deletions source/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,11 @@ class FreeplayState extends MusicBeatState
function changeDiff(change:Int = 0)
{
curDifficulty += change;

var max = 2;
if(FlxG.save.data.canGlitch) max=3;
if (curDifficulty < 0)
curDifficulty = 3;
if (curDifficulty > 3)
curDifficulty = max;
if (curDifficulty > max)
curDifficulty = 0;

#if !switch
Expand Down
2 changes: 1 addition & 1 deletion source/ItemState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class ItemState extends MusicBeatState
var conditions = [
FlxG.save.data.omegaGoodEnding,
FlxG.save.data.getResistance,
FlxG.save.data.becomeATwat,
FlxG.save.data.beATwat,
FlxG.save.data.omegaBadEnding,
FlxG.save.data.drunk,
true
Expand Down
3 changes: 1 addition & 2 deletions source/MainMenuState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ class MainMenuState extends MusicBeatState
add(iconSpr);

if(FlxG.save.data.daddyTimeTime){
FlxG.save.data.daddyTimeTime=false;
FlxG.save.data.foundFatherTime=true;
FlxG.mouse.visible=true;
var paper:FlxSprite = new FlxSprite(0,0).loadGraphic(Paths.image("paperBG"));
paper.scrollFactor.set(.01,.01);
Expand Down Expand Up @@ -284,6 +282,7 @@ class MainMenuState extends MusicBeatState

if(fatherTimeButton!=null){
if(FlxG.mouse.overlaps(fatherTimeButton) && FlxG.mouse.justPressed){
FlxG.save.data.daddyTimeTime=false;
PlayState.blueballs=0;
LoadingState.loadAndSwitchState(new CutsceneState(CoolUtil.coolTextFile(Paths.txt('father-time/found')),new PlayState()));
}
Expand Down
2 changes: 1 addition & 1 deletion source/Options.hx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Options
public var dishonorShaders:Bool = true;
public var controls:Array<FlxKey> = [FlxKey.A,FlxKey.S,FlxKey.K,FlxKey.L,FlxKey.R];
public var controlsSixK:Array<FlxKey> = [FlxKey.A,FlxKey.S,FlxKey.D,FlxKey.J,FlxKey.K,FlxKey.L,FlxKey.R];
public var ghosttapping:Bool = false;
public var ghosttapping:Bool = true;
public var failForMissing:Bool = false;
public var loadModcharts:Bool = true;
public var pauseHoldAnims:Bool = true;
Expand Down
4 changes: 2 additions & 2 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,7 @@ class PlayState extends MusicBeatState
boyfriend = new Boyfriend(770, 450, SONG.player1);
}
}else{
boyfriend = new Boyfriend(770, 450, SONG.player1);
boyfriend = new Boyfriend(770, 450, 'bf-pixel');
}


Expand Down Expand Up @@ -3841,7 +3841,7 @@ class PlayState extends MusicBeatState
#end
}
blueballs=0;
if(accuracy>=.9){
if(accuracy>=.9 && !FlxG.save.data.beATwat){
FlxG.save.data.beATwat=true;
UnlockingItemState.unlocking.push('twatmode');
}
Expand Down

0 comments on commit 3e33343

Please sign in to comment.