normalized perms on all files, to avoid relying on any stored executable bits in...
[feisty_meow.git] / huffware / huffotronic_scripts / take_touches_v0.2.txt
1 
2 // huffware script: take touches, by fred huffhines.
3 //
4 // eats any touches from an avatar so that other prims do not know they happened.
5 //
6 // this script is licensed by the GPL v3 which is documented at: http://www.gnu.org/licenses/gpl.html
7 // do not use it in objects without fully realizing you are implicitly accepting that license.
8 //
9
10 default
11 {
12     state_entry() { }
13
14     touch_start(integer total_number)
15     {
16         // do nothing.
17     }
18 }
19