diff -r 000000000000 -r cc66ad6b0d75 objects/obj_drinking_tables.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/objects/obj_drinking_tables.lua Sat Mar 27 17:43:08 2010 +0000 @@ -0,0 +1,14 @@ +--[[ +Tables to sit at in the bar or anywhere else + +by Manole Paul-Sebastian (brokenthorn) +]] + +classes.obj_drinking_tables = +{ + _properties = { name = "tables", longname = "some drinking tables", desc = "You see some uninteresting, uncloathed drinking tables." }; + _parent = nil; + sit = function (self, e) + e.person:_say("/me pulls a chair and sits at one of the drinking tables"); + end, +} \ No newline at end of file