﻿
// huffware script: take touches, by fred huffhines.
//
// eats any touches from an avatar so that other prims do not know they happened.
//
// this script is licensed by the GPL v3 which is documented at: http://www.gnu.org/licenses/gpl.html
// do not use it in objects without fully realizing you are implicitly accepting that license.
//

default
{
    state_entry() { }

    touch_start(integer total_number)
    {
        // do nothing.
    }
}

