mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
10 lines
285 B
Plaintext
10 lines
285 B
Plaintext
// This is a debug function for displaying visible lasers for ourselves
|
|
#include "script_component.hpp"
|
|
|
|
ACE_LOGINFO("Laser Emitter Dump");
|
|
|
|
{
|
|
ACE_LOGINFO_1(" %1", _x);
|
|
ACE_LOGINFO_1(" %1",HASH_GET(GVAR(laserEmitters),_x));
|
|
} forEach GVAR(laserEmitters) select 0;
|