Skip to content

Commit bf425cc

Browse files
committed
whitespace
1 parent 29f96e2 commit bf425cc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

area/dreamZan.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def ammesBattle():
174174
lastHit = memory.main.lastHitCheckChange()
175175
while lastHit == 9999:
176176
lastHit = memory.main.lastHitCheckChange()
177-
print("Confirm - last hit: ", lastHit)
177+
print("Confirm - last hit:", lastHit)
178178
hitsArray.append(lastHit)
179179
print(hitsArray)
180180
print("#####################################")
@@ -185,7 +185,7 @@ def ammesBattle():
185185
print("### Corrected RNG seed:", correctSeed)
186186
if correctSeed != "Err_seed_not_found":
187187
gameVars.setConfirmedSeed(correctSeed)
188-
print("Confirming RNG seed: ", memory.main.rngSeed())
188+
print("Confirming RNG seed:", memory.main.rngSeed())
189189
print("#####################################")
190190
print("Done Killing Sinspawn")
191191
memory.main.waitFrames(6) # Just for no overlap

battle/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ def oblitzRngWait():
33213321
pos = 0
33223322

33233323
if seedNum not in rngValues:
3324-
print("## No values for this RNG seed - ", memory.main.rngSeed())
3324+
print("## No values for this RNG seed -", memory.main.rngSeed())
33253325
firstResult = [comingSeeds[1], 10, True, 1]
33263326
secondResult = [comingSeeds[2], 20, True, 2]
33273327
else:
@@ -3342,12 +3342,12 @@ def oblitzRngWait():
33423342
duration = int(rngValues[seedNum][str(comingSeeds[i])]['duration']) + pos
33433343
#print(duration)
33443344
victory = bool(rngValues[seedNum][str(comingSeeds[i])]['victory'])
3345-
print("Known result. ", [comingSeeds[i], duration, victory, pos])
3345+
print("Known result.", [comingSeeds[i], duration, victory, pos])
33463346
#print(victory)
33473347
elif gameVars.loopBlitz():
33483348
duration = 1 + pos
33493349
victory = True
3350-
print("No result (preferred), loop. ", [comingSeeds[i], duration, victory, pos])
3350+
print("No result (preferred), loop.", [comingSeeds[i], duration, victory, pos])
33513351
else:
33523352
duration = 540 + pos
33533353
#540 is about the maximum duration we desire.

0 commit comments

Comments
 (0)