Skip to content

Commit

Permalink
commenting and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jorolf committed Aug 24, 2017
1 parent 37435d2 commit 2195e62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private void calcRange(Beatmap beatmap)
floatRanges[beatmap] = new FloatRange
{
Min = positions.Min(),
Max = positions.Max() + 1, //So we exclude ones later
Max = positions.Max() + 1, //So we exclude '1' later
};
}

Expand Down
5 changes: 2 additions & 3 deletions osu.Game.Rulesets.Pippidon/Judgements/PippidonJudgement.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Objects.Drawables;

namespace osu.Game.Rulesets.Pippidon.Judgements
{
public class PippidonJudgement : Judgement
{
public override string ResultString => "";
public override string ResultString => "$";

public override string MaxResultString => "";
public override string MaxResultString => "$";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public override Replay Generate()
}

Frames.Add(new ReplayFrame(time, null, null, button));
Frames.Add(new ReplayFrame(time + KEY_UP_DELAY, null, null, ReplayButtonState.None));
Frames.Add(new ReplayFrame(time + KEY_UP_DELAY, null, null, ReplayButtonState.None)); //Release the keys as well
lastLane = hitObject.Lane;
}

Expand Down

0 comments on commit 2195e62

Please sign in to comment.