mirror of
https://github.com/InfinityLoader/IL-GSC.git
synced 2025-06-27 09:57:53 -05:00
Fixed BO2 DevBlock Bug
This commit is contained in:
@ -4,8 +4,8 @@
|
||||
* Game: Call of Duty: Black Ops 2
|
||||
* Platform: PC
|
||||
* Function Count: 3
|
||||
* Decompile Time: 3 ms
|
||||
* Timestamp: 10/27/2023 2:59:42 AM
|
||||
* Decompile Time: 2 ms
|
||||
* Timestamp: 10/28/2023 12:10:19 AM
|
||||
*******************************************************************/
|
||||
|
||||
#include codescripts/character;
|
||||
|
@ -5,7 +5,7 @@
|
||||
* Platform: PC
|
||||
* Function Count: 1
|
||||
* Decompile Time: 2 ms
|
||||
* Timestamp: 10/27/2023 2:59:42 AM
|
||||
* Timestamp: 10/28/2023 12:10:20 AM
|
||||
*******************************************************************/
|
||||
|
||||
//Function Number: 1
|
||||
@ -18,11 +18,15 @@ main()
|
||||
if(IsDefined(self))
|
||||
{
|
||||
/#
|
||||
println("");
|
||||
println("*** trigger debug: delete.gsc is deleting trigger with ent#: " + self getentitynumber() + " at origin: " + self.origin);
|
||||
println("");
|
||||
self.classname == "trigger_once" || self.classname == "trigger_radius" || self.classname == "trigger_multiple"
|
||||
IsDefined(self.classname)
|
||||
if(IsDefined(self.classname))
|
||||
{
|
||||
if(self.classname == "trigger_once" || self.classname == "trigger_radius" || self.classname == "trigger_multiple")
|
||||
{
|
||||
println("");
|
||||
println("*** trigger debug: delete.gsc is deleting trigger with ent#: " + self getentitynumber() + " at origin: " + self.origin);
|
||||
println("");
|
||||
}
|
||||
}
|
||||
#/
|
||||
self delete();
|
||||
}
|
||||
|
@ -4,8 +4,8 @@
|
||||
* Game: Call of Duty: Black Ops 2
|
||||
* Platform: PC
|
||||
* Function Count: 3
|
||||
* Decompile Time: 1 ms
|
||||
* Timestamp: 10/27/2023 2:59:43 AM
|
||||
* Decompile Time: 0 ms
|
||||
* Timestamp: 10/28/2023 12:10:20 AM
|
||||
*******************************************************************/
|
||||
|
||||
//Function Number: 1
|
||||
|
Reference in New Issue
Block a user