void FSLSLBridge::initCreationStep()
{
	mBridgeCreating = true;
	//announce yourself
	reportToNearbyChat(LLTrans::getString("fsbridge_creating"));

	createNewBridge();
}
void FSLSLBridge :: initCreationStep()
{
	mBridgeCreating = true;
	//announce yourself
	reportToNearbyChat("Creating the bridge. This might take a few moments, please wait");

	if (gSavedSettings.getBOOL("NoInventoryLibrary"))
	{
		llwarns << "Asked to create bridge, but we don't have a library" << llendl;
		reportToNearbyChat("Firestorm could not create an LSL bridge. Please enable your library and relog");
		return;
	}
	createNewBridge();
}