Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Bug Bot pusher not detecting my small bugfix "There weren't any detectable changes in your bots"

cuppa.drink(java);
Joined
Mar 13, 2018
Messages
7,465
I originally responded to the bot pusher autorespond message from @Cloud but I never got a response, so I assume the message got buried or Cloud is busy so figured I'd post this to the forum.

When I try to push a small update, I get from the bot pusher:
Unfortunately, none of your bots have advanced to the next stage of review. Before you consider pushing another update, please review the following suggestions, warnings, and/or errors.
  • There weren't any detectable changes in your bots since your last release. For a bot to be repackaged and re-reviewed it must have changes that affect it's bytecode.

This message has been automatically generated by RuneMate's Bot Pusher. If this was the result of a mistake or misclick on your part, please do not feel the need to respond/apologize. If you have any questions or concerns, just respond to this message and an Executive will review your comment shortly. Happy botting!

This doesn't make sense to me because I did try to push a small change. The small bug I've been getting notifications for for a while is:
java.lang.IllegalStateException: Only a paused bot may be resumed, and the current state is RUNNING.
at com.runemate.game.api.script.framework.AbstractBot.resume(glc:87)
at com.cuppajava.bots.cuppatradercrewmember.controller.GUIController.lambda$startBot$1(GUIController.java:258)

So in com.cuppajava.bots.cuppatradercrewmember.controller.GUIController I surrounded the resume() like
Code:
if(bot.isPaused()) {
bot.resume();
}

I pushed it through SVN and I can see the change in my repo, and I clicked "Push Bot Update to Queue" but the bot pusher isn't noticing the change it seems?

I tried to push this update a month ago and just now as well, but it clearly isn't detecting my changes as I'm still getting notifications that this exception is in my code.

Please advise, anyone. Should I try deleting the relevant class, uploading through SVN, re-adding and then pushing to bot queue? Or?
 
@Cloud @Arbiter ?
 
Solved, I'm a moron and didn't increment the version number.
 
Top