This file is indexed.

/usr/share/games/colobot/ai/exchg1.txt is in colobot-common 0.1.6-2.

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
extern void object::SwitchCell1()
{
	grab(InFront);     // take the new cell in front
	drop(Behind);      // and drop it behind
	
	grab(EnergyCell);  // take the cell from the bot
	drop(InFront);     // and drop it in front
	
	grab(Behind);      // take the new cell
	drop(EnergyCell);  // and drop it on the bot
}