From d78c12427ead5ee4d0ddc10ccd1a7236b9de6e6b Mon Sep 17 00:00:00 2001 From: Tobias Zwick Date: Mon, 25 Jan 2010 01:07:42 +0100 Subject: [PATCH] an inherited... --- planet/Objects.c4d/Libraries.c4d/HasExtraSlot.c4d/Script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planet/Objects.c4d/Libraries.c4d/HasExtraSlot.c4d/Script.c b/planet/Objects.c4d/Libraries.c4d/HasExtraSlot.c4d/Script.c index 364648ac6..efd26a3bd 100644 --- a/planet/Objects.c4d/Libraries.c4d/HasExtraSlot.c4d/Script.c +++ b/planet/Objects.c4d/Libraries.c4d/HasExtraSlot.c4d/Script.c @@ -17,7 +17,7 @@ func SetHUDObject(object extraslot) { ExtraHUD = extraslot; } func NotifyHUD() { if(ExtraHUD) ExtraHUD->Update(); } func Collection2() { NotifyHUD(); return _inherited(...); } func Ejection() { NotifyHUD(); return _inherited(...); } -func Departure() { if(Contents(0)) Contents(0)->Exit(); } +func Departure() { if(Contents(0)) Contents(0)->Exit(); return _inherited(...); } func Definition(def) { SetProperty("Name", "ExtraSlot", def);