diff options
author | Justin Clark-Casey (justincc) | 2013-03-12 23:01:27 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-03-12 23:01:27 +0000 |
commit | fb1211ad5ef86bf6a1b6170775f1ebb4adcb4cb7 (patch) | |
tree | 1a1a1e1d7ff84a50900b70d8d4c46fff4ad5f4f8 /bin | |
parent | Improve teleport cancellation in some circumstances, though cancelling telepo... (diff) | |
download | opensim-SC-fb1211ad5ef86bf6a1b6170775f1ebb4adcb4cb7.zip opensim-SC-fb1211ad5ef86bf6a1b6170775f1ebb4adcb4cb7.tar.gz opensim-SC-fb1211ad5ef86bf6a1b6170775f1ebb4adcb4cb7.tar.bz2 opensim-SC-fb1211ad5ef86bf6a1b6170775f1ebb4adcb4cb7.tar.xz |
Add DisableInterRegionTeleportCancellation option in [EntityTransfer] section of OpenSim.ini. False by default.
This option allows the simulator to specify that the cancel button on inter-region teleports should never appear.
This exists because sometimes cancellation will result in a stuck avatar requiring relog.
It may be hard to prevent this due to the protocol design (the LL grid has the same issue)
In small controlled grids where teleport failure is practically impossible it can be better to disable teleport cancellation entirely.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.ini.example | 7 | ||||
-rw-r--r-- | bin/OpenSimDefaults.ini | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index e078e86..ce2e600 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -541,6 +541,13 @@ | |||
541 | ; shout_distance = 100 | 541 | ; shout_distance = 100 |
542 | 542 | ||
543 | 543 | ||
544 | [EntityTransfer] | ||
545 | ;# {DisableInterRegionTeleportCancellation} {} {Determine whether the cancel button is shown at all during teleports.} {false true} false | ||
546 | ;; This option exists because cancelling at certain points can result in an unuseable session (frozen avatar, etc.) | ||
547 | ;; Disabling cancellation can be okay in small closed grids where all teleports are highly likely to suceed. | ||
548 | ;DisableInterRegionTeleportCancellation = false | ||
549 | |||
550 | |||
544 | [Messaging] | 551 | [Messaging] |
545 | ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *} | 552 | ;# {OfflineMessageModule} {} {Module to use for offline message storage} {OfflineMessageModule "Offline Message Module V2" *} |
546 | ;; Module to handle offline messaging. The core module requires an external | 553 | ;; Module to handle offline messaging. The core module requires an external |
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 417150a..1d2c0cf 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -628,6 +628,11 @@ | |||
628 | ; Minimum user level required for HyperGrid teleports | 628 | ; Minimum user level required for HyperGrid teleports |
629 | LevelHGTeleport = 0 | 629 | LevelHGTeleport = 0 |
630 | 630 | ||
631 | ; Determine whether the cancel button is shown at all during teleports. | ||
632 | ; This option exists because cancelling at certain points can result in an unuseable session (frozen avatar, etc.) | ||
633 | ; Disabling cancellation can be okay in small closed grids where all teleports are highly likely to suceed. | ||
634 | DisableInterRegionTeleportCancellation = false | ||
635 | |||
631 | 636 | ||
632 | [Messaging] | 637 | [Messaging] |
633 | ; Control which region module is used for instant messaging. | 638 | ; Control which region module is used for instant messaging. |