Welcome!

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

Sign up now!

Resolved Releasing bots with common code

Eyyyyy Macarena
Joined
Oct 24, 2018
Messages
58
I currently have two bots published, both of which are abstracted by a common class:

Code:
public class Bot1 extends AbstractBot {

}

public class Bot2 extends AbstractBot {

}

I'm now preparing to publish a third bot, but the commits also include changes to AbstractBot.

Given that I haven't changed the manifests for Bot1 and Bot2, is it safe to push Bot3 to the review queue if I don't want AbstractBot's changes to be applied to the older bots yet?
 
Client Developer
Joined
Oct 12, 2015
Messages
3,764
If you make changes to any code related to the other two bots, they'll be re-evaluated by the bot pusher.
 
Top