Fix not being able to buy land because of inversed RLVa logic.

This commit is contained in:
Inusaito Sayori
2014-03-31 13:12:33 -04:00
parent 8889e2de64
commit f53e36c430

View File

@@ -2228,7 +2228,7 @@ bool LLViewerParcelMgr::canAgentBuyParcel(LLParcel* parcel, bool forGroup) const
void LLViewerParcelMgr::startBuyLand(BOOL is_for_group)
{
// [RLVa:KB] - Checked: 2009-07-04 (RLVa-1.0.0a)
if (RlvActions::isRlvEnabled() && RlvActions::canShowLocation())
if (RlvActions::isRlvEnabled() && !RlvActions::canShowLocation())
return;
// [/RLVa:KB]
if (selectionEmpty()) selectParcelAt(gAgent.getPositionGlobal());