blob: f5bf91b5a20693ac162089c6066046e7a39043ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*-- Schneeball --*/
#strict 2
#include ICE1
#include SNWB
protected func Departure(object container)
{
// Throw only if the container was a clonk
if (!(container->GetOCF() & OCF_CrewMember)) return 1;
}
|