diff options
| author | Callum Prentice <callum@mbp.local> | 2021-06-24 14:35:24 -0700 | 
|---|---|---|
| committer | Callum Prentice <callum@mbp.local> | 2021-06-24 14:35:24 -0700 | 
| commit | 57da3e609fddb37ef3ddef830a0be84ebc5337bd (patch) | |
| tree | 070d74bad9a108d3c2610480cc32e7ba46c9b81d /indra/llinventory | |
| parent | 6baaef4ee20b62b310ea738e416feeb417ed1792 (diff) | |
| parent | 467d8339c970c253dada2cf0e1eed45be66593ac (diff) | |
Merge branch 'master' into DRTVWR-519
Diffstat (limited to 'indra/llinventory')
| -rw-r--r-- | indra/llinventory/llparcel.h | 6 | ||||
| -rw-r--r-- | indra/llinventory/llparcelflags.h | 2 | 
2 files changed, 1 insertions, 7 deletions
| diff --git a/indra/llinventory/llparcel.h b/indra/llinventory/llparcel.h index 3b39aeb56b..5d08c1f4c6 100644 --- a/indra/llinventory/llparcel.h +++ b/indra/llinventory/llparcel.h @@ -295,7 +295,6 @@ public:  	void	setAllowTerraform(BOOL b){setParcelFlag(PF_ALLOW_TERRAFORM, b); }  	void	setAllowDamage(BOOL b)	{ setParcelFlag(PF_ALLOW_DAMAGE, b); }  	void	setAllowFly(BOOL b)		{ setParcelFlag(PF_ALLOW_FLY, b); } -	void	setAllowLandmark(BOOL b){ setParcelFlag(PF_ALLOW_LANDMARK, b); }  	void	setAllowGroupScripts(BOOL b)	{ setParcelFlag(PF_ALLOW_GROUP_SCRIPTS, b); }  	void	setAllowOtherScripts(BOOL b)	{ setParcelFlag(PF_ALLOW_OTHER_SCRIPTS, b); }  	void	setAllowDeedToGroup(BOOL b) { setParcelFlag(PF_ALLOW_DEED_TO_GROUP, b); } @@ -476,11 +475,6 @@ public:  	BOOL	getAllowFly() const  					{ return (mParcelFlags & PF_ALLOW_FLY) ? TRUE : FALSE; } -	// Remove permission restrictions for creating landmarks. -	// We should eventually remove this flag completely. -	BOOL	getAllowLandmark() const -					{ return TRUE; } -  	BOOL	getAllowGroupScripts() const  					{ return (mParcelFlags & PF_ALLOW_GROUP_SCRIPTS) ? TRUE : FALSE; } diff --git a/indra/llinventory/llparcelflags.h b/indra/llinventory/llparcelflags.h index 25b27a281a..4cffa83cc1 100644 --- a/indra/llinventory/llparcelflags.h +++ b/indra/llinventory/llparcelflags.h @@ -33,7 +33,7 @@ const U32 PF_ALLOW_FLY			= 1 << 0;// Can start flying  const U32 PF_ALLOW_OTHER_SCRIPTS= 1 << 1;// Scripts by others can run.  const U32 PF_FOR_SALE			= 1 << 2;// Can buy this land  const U32 PF_FOR_SALE_OBJECTS	= 1 << 7;// Can buy all objects on this land -const U32 PF_ALLOW_LANDMARK		= 1 << 3; +const U32 PF_ALLOW_LANDMARK		= 1 << 3;// Always true/deprecated  const U32 PF_ALLOW_TERRAFORM	= 1 << 4;  const U32 PF_ALLOW_DAMAGE		= 1 << 5;  const U32 PF_CREATE_OBJECTS		= 1 << 6; | 
