diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/primbackup.cpp | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/linden/indra/newview/primbackup.cpp b/linden/indra/newview/primbackup.cpp index 7f050a0..305731f 100644 --- a/linden/indra/newview/primbackup.cpp +++ b/linden/indra/newview/primbackup.cpp | |||
@@ -423,11 +423,18 @@ void primbackup::exportworker(void *userdata) | |||
423 | // Exporting object textures (or other content) from Second Life | 423 | // Exporting object textures (or other content) from Second Life |
424 | // without checking creator is a violation of the Second Life | 424 | // without checking creator is a violation of the Second Life |
425 | // Policy on Third-Party Viewers and Terms of Service. | 425 | // Policy on Third-Party Viewers and Terms of Service. |
426 | if(gHippoGridManager->getConnectedGrid()->isSecondLife()) | 426 | // Coz LL are paranoid about other grids getting useful content. |
427 | { | 427 | // This is probably illegal with respect to open source content, |
428 | primbackup::getInstance()->export_state=EXPORT_DONE; | 428 | // it usually has licenses designed to prevent third parties (LL) |
429 | return; | 429 | // from restricting copying. |
430 | } | 430 | // This is the meta-impy viewer, we don't care about LL's broken policies |
431 | // and we really don't care for LL imposing their own restrictions | ||
432 | // on content that the content author did not want. | ||
433 | // if(gHippoGridManager->getConnectedGrid()->isSecondLife()) | ||
434 | // { | ||
435 | // primbackup::getInstance()->export_state=EXPORT_DONE; | ||
436 | // return; | ||
437 | // } | ||
431 | 438 | ||
432 | if(primbackup::getInstance()->m_nexttextureready==false) | 439 | if(primbackup::getInstance()->m_nexttextureready==false) |
433 | return; | 440 | return; |