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) {
159159 cursor . Emit ( OpCodes . Ldarg_0 ) ;
160160 cursor . EmitDelegate < Action < OuiChapterPanel > > ( self => {
161161 // 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+
163165 MTN . FileSelect [ "heart" ] . Draw ( self . Position + new Vector2 ( - 580f , 130f ) ) ;
164166 }
165167 } ) ;
Original file line number Diff line number Diff line change 44namespace Celeste . Mod . SpringCollab2020 {
55 public class SpringCollab2020SaveData : EverestModuleSaveData {
66 public HashSet < string > ModifiedThemeMaps = new HashSet < string > ( ) { } ;
7-
8- public bool BeatOldGrandmasterHeartSide { get ; set ; } = false ;
97 }
108}
You can’t perform that action at this time.
0 commit comments