Hi,
I’m on the dueling grounds (Python) with the simple katana. However, I’m getting the error that “Unhandled error: Error: You can’t use Hero Placeholder’s powerup method here.” What is the reason for this error? Here is my code:
while True:
# Find and attack the enemy inside a loop.
# When you're done, submit to the multiplayer ladder!
enemy = hero.findNearestEnemy()
if hero.isReady("power-up"):
hero.powerUp()
else:
hero.attack(enemy)