blob: 6fef017928b0bd4772a8358efe5176dd499763f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*-- 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;
return _inherited(container);
}
|