drop(str) {
	if (str =="all") {
	drop("bottle");
	return;
	}
	if(!id(str)) return 0;
     transfer(this_object(), "room/void");
     write("The object shatters when it hits the ground!\n");
     destruct(this_object());
     return 1;
}
