Have bartender
Function Syntax
boolean have_bartender()
Returns true if you have a bartender (regular or clockwork) installed at your campground, and false if not.
Code Sample
This example tells you if it's turn-safe to mix cocktails.
if (have_bartender()) {
print("It's safe to do a little cocktail-crafting." , "blue");
} else {
print("Warning, cocktail-crafting will consume turns!" , "red");
}