-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1 @@ | ||
class CTIMut extends KFMutator; | ||
|
||
var private CTI CTI; | ||
|
||
public simulated function bool SafeDestroy() | ||
{ | ||
return (bPendingDelete || bDeleteMe || Destroy()); | ||
} | ||
|
||
public event PreBeginPlay() | ||
{ | ||
Super.PreBeginPlay(); | ||
|
||
if (WorldInfo.NetMode == NM_Client) return; | ||
|
||
foreach WorldInfo.DynamicActors(class'CTI', CTI) | ||
{ | ||
break; | ||
} | ||
|
||
if (CTI == None) | ||
{ | ||
CTI = WorldInfo.Spawn(class'CTI'); | ||
} | ||
|
||
if (CTI == None) | ||
{ | ||
`Log_Base("FATAL: Can't Spawn 'CTI'"); | ||
SafeDestroy(); | ||
} | ||
} | ||
|
||
public function AddMutator(Mutator Mut) | ||
{ | ||
if (Mut == Self) return; | ||
|
||
if (Mut.Class == Class) | ||
CTIMut(Mut).SafeDestroy(); | ||
else | ||
Super.AddMutator(Mut); | ||
} | ||
|
||
public function NotifyLogin(Controller C) | ||
{ | ||
CTI.NotifyLogin(C); | ||
|
||
Super.NotifyLogin(C); | ||
} | ||
|
||
public function NotifyLogout(Controller C) | ||
{ | ||
CTI.NotifyLogout(C); | ||
|
||
Super.NotifyLogout(C); | ||
} | ||
|
||
DefaultProperties | ||
{ | ||
GroupNames.Add("TraderItems") | ||
} | ||
class CTIMut extends Mut; // backward compatibility |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
class Mut extends KFMutator; | ||
|
||
var private CTI CTI; | ||
|
||
public simulated function bool SafeDestroy() | ||
{ | ||
return (bPendingDelete || bDeleteMe || Destroy()); | ||
} | ||
|
||
public event PreBeginPlay() | ||
{ | ||
Super.PreBeginPlay(); | ||
|
||
if (WorldInfo.NetMode == NM_Client) return; | ||
|
||
foreach WorldInfo.DynamicActors(class'CTI', CTI) | ||
{ | ||
break; | ||
} | ||
|
||
if (CTI == None) | ||
{ | ||
CTI = WorldInfo.Spawn(class'CTI'); | ||
} | ||
|
||
if (CTI == None) | ||
{ | ||
`Log_Base("FATAL: Can't Spawn 'CTI'"); | ||
SafeDestroy(); | ||
} | ||
} | ||
|
||
public function AddMutator(Mutator M) | ||
{ | ||
if (M == Self) return; | ||
|
||
if (M.Class == Class) | ||
Mut(M).SafeDestroy(); | ||
else | ||
Super.AddMutator(M); | ||
} | ||
|
||
public function NotifyLogin(Controller C) | ||
{ | ||
CTI.NotifyLogin(C); | ||
|
||
Super.NotifyLogin(C); | ||
} | ||
|
||
public function NotifyLogout(Controller C) | ||
{ | ||
CTI.NotifyLogout(C); | ||
|
||
Super.NotifyLogout(C); | ||
} | ||
|
||
DefaultProperties | ||
{ | ||
GroupNames.Add("TraderItems") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters