Oops; left in some debug prints

This commit is contained in:
Eric Froemling 2020-04-08 02:09:47 -07:00
parent 98c8fcf61d
commit 52e640b474

View File

@ -596,7 +596,6 @@ class Achievement:
# Show 'hard-mode-only' only over incomplete achievements # Show 'hard-mode-only' only over incomplete achievements
# when that's the case. # when that's the case.
if hmo: if hmo:
print('DOING HMO WITH STYLE', style)
txtactor = Text( txtactor = Text(
Lstr(resource='difficultyHardOnlyText'), Lstr(resource='difficultyHardOnlyText'),
host_only=True, host_only=True,
@ -614,7 +613,6 @@ class Achievement:
color=(1, 1, 0.6, 1), color=(1, 1, 0.6, 1),
transition_delay=delay + 0.05, transition_delay=delay + 0.05,
transition_out_delay=None).autoretain() transition_out_delay=None).autoretain()
print('DID HMO')
assert txtactor.node assert txtactor.node
txtactor.node.rotate = 10 txtactor.node.rotate = 10
objs.append(txtactor) objs.append(txtactor)