diff options
| -rw-r--r-- | indra/llcommon/llversionviewer.h | 2 | ||||
| -rw-r--r-- | indra/newview/llfloaterbuyland.cpp | 14 | ||||
| -rw-r--r-- | indra/newview/llviewerparcelmgr.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 28 | 
4 files changed, 44 insertions, 5 deletions
| diff --git a/indra/llcommon/llversionviewer.h b/indra/llcommon/llversionviewer.h index 08026c38a6..79124a5a37 100644 --- a/indra/llcommon/llversionviewer.h +++ b/indra/llcommon/llversionviewer.h @@ -29,7 +29,7 @@  const S32 LL_VERSION_MAJOR = 2;  const S32 LL_VERSION_MINOR = 6; -const S32 LL_VERSION_PATCH = 8; +const S32 LL_VERSION_PATCH = 9;  const S32 LL_VERSION_BUILD = 0;  const char * const LL_CHANNEL = "Second Life Developer"; diff --git a/indra/newview/llfloaterbuyland.cpp b/indra/newview/llfloaterbuyland.cpp index 83105ef27c..50b19a4221 100644 --- a/indra/newview/llfloaterbuyland.cpp +++ b/indra/newview/llfloaterbuyland.cpp @@ -459,10 +459,18 @@ void LLFloaterBuyLandUI::updateParcelInfo()  			return;  		} -		if (!authorizedBuyer.isNull()  &&  buyer != authorizedBuyer) +		if (!authorizedBuyer.isNull() && buyer != authorizedBuyer)  		{ -			mCannotBuyReason = getString("set_to_sell_to_other"); -			return; +			// Maybe the parcel is set for sale to a group we are in.
 +			bool authorized_group =
 +				gAgent.hasPowerInGroup(authorizedBuyer,GP_LAND_DEED)
 +				&& gAgent.hasPowerInGroup(authorizedBuyer,GP_LAND_SET_SALE_INFO);
 +
 +			if (!authorized_group)
 +			{
 +				mCannotBuyReason = getString("set_to_sell_to_other");
 +				return;
 +			}  		}  	}  	else diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index e84e4a859a..c84a14f62c 100644 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -2200,7 +2200,10 @@ bool LLViewerParcelMgr::canAgentBuyParcel(LLParcel* parcel, bool forGroup) const  		= parcelOwner == (forGroup ? gAgent.getGroupID() : gAgent.getID());  	bool isAuthorized -		= (authorizeBuyer.isNull() || (gAgent.getID() == authorizeBuyer)); +			= (authorizeBuyer.isNull()
 +				|| (gAgent.getID() == authorizeBuyer)
 +				|| (gAgent.hasPowerInGroup(authorizeBuyer,GP_LAND_DEED)
 +					&& gAgent.hasPowerInGroup(authorizeBuyer,GP_LAND_SET_SALE_INFO)));  	return isForSale && !isOwner && isAuthorized  && isEmpowered;  } diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index c64d492612..06614dd218 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -6817,6 +6817,34 @@ Deed to group failed.    <notification     icon="notifytip.tga" +   name="ReleaseLandThrottled" +   type="notifytip"> +The parcel [PARCEL_NAME] can not be abandoned at this time. +   tag>fail</tag> +  </notification> +	 +  <notification +   icon="notifytip.tga" +   name="ReleasedLandWithReclaim" +   type="notifytip"> +The [AREA] m² parcel '[PARCEL_NAME]' has been released. + +You will have [RECLAIM_PERIOD] hours to reclaim for L$0 before it is set for sale to anyone. +   <tag>fail</tag> +  </notification> +	 +  <notification +   icon="notifytip.tga" +   name="ReleasedLandNoReclaim" +   type="notifytip"> +The [AREA] m² parcel '[PARCEL_NAME]' has been released. + +It is now available for purchase by anyone. +   <tag>fail</tag> +  </notification> + +  <notification +   icon="notifytip.tga"     name="AvatarRezNotification"     type="notifytip">  ( [EXISTENCE] seconds alive ) | 
