aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2021-09-06 21:39:03 +1000
committeronefang2021-09-06 21:39:03 +1000
commit20739ebd19e0d106cd74da63a81c0f6fcc02afce (patch)
tree618fe7b13c9f421ad411dc7223e786a26ac9c9b6
parentMore consistency in the 1ring menus. (diff)
download1ring-20739ebd19e0d106cd74da63a81c0f6fcc02afce.zip
1ring-20739ebd19e0d106cd74da63a81c0f6fcc02afce.tar.gz
1ring-20739ebd19e0d106cd74da63a81c0f6fcc02afce.tar.bz2
1ring-20739ebd19e0d106cd74da63a81c0f6fcc02afce.tar.xz
osTeleportAgent() -> osTeleportOwner()
-rw-r--r--1ring.lsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/1ring.lsl b/1ring.lsl
index 5f1d7c8..71c1b84 100644
--- a/1ring.lsl
+++ b/1ring.lsl
@@ -711,7 +711,7 @@ s("YAY! Freeeeeee at last!!!!!");
711// Or at least to half the follow distance away. 711// Or at least to half the follow distance away.
712 s("Teleporting you to " + osKey2Name(Stalkee) 712 s("Teleporting you to " + osKey2Name(Stalkee)
713 + " at " + llList2String(TPtDestination, 1) + " " + llList2String(TPtDestination, 2)); 713 + " at " + llList2String(TPtDestination, 1) + " " + llList2String(TPtDestination, 2));
714 osTeleportAgent(Owner, llList2String(TPtDestination, 1), llList2Vector(TPtDestination, 2), <1.0,1.0,1.0>); 714 osTeleportOwner(llList2String(TPtDestination, 1), llList2Vector(TPtDestination, 2), ZERO_VECTOR);
715 } 715 }
716 else if ("TESTS" == cmd) 716 else if ("TESTS" == cmd)
717 S("selected test " + data); 717 S("selected test " + data);
@@ -1505,7 +1505,7 @@ d("HEY leashy! " + URL);
1505 if (dist > (2 *(RANGE + bb))) 1505 if (dist > (2 *(RANGE + bb)))
1506 { 1506 {
1507 s("Double TP to get closer."); 1507 s("Double TP to get closer.");
1508 osTeleportAgent(Owner, llList2String(TPtDestination, 1), llList2Vector(TPtDestination, 2), <1.0,1.0,1.0>); 1508 osTeleportOwner(llList2String(TPtDestination, 1), llList2Vector(TPtDestination, 2), ZERO_VECTOR);
1509 } 1509 }
1510 TPtDestination = []; 1510 TPtDestination = [];
1511 } 1511 }