@@ -1016,12 +1016,15 @@ def updateGraph(data, epilogue, drawEpilogue, plot):
10161016 plot .plot (timeAxis [dayDelta - 1 :], yAxisDailyIdeal , color = 'skyblue' , label = 'Daily Ideal' , alpha = 1 , linestyle = "--" )
10171017
10181018 plot .plot (timeAxis [:len (yAxisYou )], yAxisYou , color = 'red' , label = 'You' , linewidth = 3 )
1019- if remainingDays >= 0 : plot .plot (dayDelta , totalXPCollected , color = 'darkred' , label = "Now" , marker = "o" , markersize = 5 )
10201019
10211020 plot .set_xticks (range (0 , duration + 1 , 5 ), minor = True )
10221021 plot .tick_params (which = "both" , top = False , bottom = False , left = False , right = False , labelleft = False )
10231022 plot .grid (axis = "x" , color = "lightgray" , which = "both" , linestyle = ":" )
10241023
1024+ if remainingDays >= 0 : plot .plot (dayDelta , yAxisIdeal [dayDelta ], color = 'black' , label = "Now" , marker = "o" , markersize = 5 )
1025+ if remainingDays >= 0 and remainingDays < duration : plot .plot (dayDelta , yAxisDailyIdeal [1 ], color = 'blue' , label = "Now" , marker = "o" , markersize = 5 )
1026+ if remainingDays >= 0 : plot .plot (dayDelta , totalXPCollected , color = 'darkred' , label = "Now" , marker = "o" , markersize = 5 )
1027+
10251028 # --------------------------------
10261029 # Draw lines for battlepass unlocks
10271030 # --------------------------------
0 commit comments