File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,9 @@ private void renderOldGMHSCompletionStamp(ILContext il) {
159
159
cursor . Emit ( OpCodes . Ldarg_0 ) ;
160
160
cursor . EmitDelegate < Action < OuiChapterPanel > > ( self => {
161
161
// draw it only if the player beat old grandmaster heart side, and we're actually looking at it.
162
- if ( self . Area . GetSID ( ) == "SpringCollab2020/5-Grandmaster/ZZ-HeartSide" && SaveData . BeatOldGrandmasterHeartSide ) {
162
+ if ( self . Area . GetSID ( ) == "SpringCollab2020/5-Grandmaster/ZZ-NewHeartSide"
163
+ && ( global ::Celeste . SaveData . Instance . GetAreaStatsFor ( AreaData . Get ( "SpringCollab2020/5-Grandmaster/ZZ-HeartSide" ) . ToKey ( ) ) ? . Modes [ 0 ] . Completed ?? false ) ) {
164
+
163
165
MTN . FileSelect [ "heart" ] . Draw ( self . Position + new Vector2 ( - 580f , 130f ) ) ;
164
166
}
165
167
} ) ;
Original file line number Diff line number Diff line change 4
4
namespace Celeste . Mod . SpringCollab2020 {
5
5
public class SpringCollab2020SaveData : EverestModuleSaveData {
6
6
public HashSet < string > ModifiedThemeMaps = new HashSet < string > ( ) { } ;
7
-
8
- public bool BeatOldGrandmasterHeartSide { get ; set ; } = false ;
9
7
}
10
8
}
You can’t perform that action at this time.
0 commit comments