mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-10-30 20:22:04 +00:00 
			
		
		
		
	 8d37d9b681
			
		
	
	8d37d9b681
	
	
	
		
			
			* Organize dScripts whitespace Remove parent scope Remove parent scope from initial setter Remove debug Remove helper programs * Fix NtImagimeterVisibility script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			314 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			314 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "AgMonumentRaceCancel.h"
 | |
| #include "EntityManager.h"
 | |
| 
 | |
| void AgMonumentRaceCancel::OnCollisionPhantom(Entity* self, Entity* target) {
 | |
| 	auto managers = EntityManager::Instance()->GetEntitiesInGroup("race_manager");
 | |
| 	if (!managers.empty()) {
 | |
| 		managers[0]->OnFireEventServerSide(target, "course_cancel");
 | |
| 	}
 | |
| }
 |