blob: 845a57d19ae975da941579de852a7dd380476920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*-- Festliche Clonks --*/
#strict 2
#appendto CLNK
func Construction () {
if (mode && mode->GetID() == MODE_Festive)
{
if(GetID() == CLNK) SetGraphics(0, this, FSVC);
return (_inherited (...));
}
}
|