/usr/share/games/instead/stead/nouse.lua is in instead-data 1.9.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | game.use = function(s, w, o)
local r, v
r, v = stead.call(w, 'nouse', o);
if not r and not v then
r, v = stead.call(o, 'noused', w);
end
if not r and not v then
r, v = stead.call(s, 'nouse', w, o)
end
return r, v
end
|