/usr/share/games/lightyears/code/startup.py is in lightyears 1.4-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 12 13 14 15 16 | #
# 20,000 Light Years Into Space
# This game is licensed under GPL v2, and copyright (C) Jack Whitham 2006.
#
# Note: This file has been shortened a lot by Debian, removing startup
# checks that shouldn't be necessary since dpkg takes care of them.
import sys
def Get_Game_Version():
return "1.3"
def Main(data_dir, ignore = None):
import main
main.Main(data_dir)
|