sourcemod
sourcemod copied to clipboard
TF2_OnPlayerTeleport forward is not working on x64 bit TF2 srcds.
Description
TF2_OnPlayerTeleport forward is not working on x64 bit TF2 srcds. Issue is relevant to both stable and dev branch of SourceMod & Metamod
Only tested on Linux, not Windows.
Problematic Code (or Steps to Reproduce)
#include <tf2>
#include <tf2_stocks>
public Action TF2_OnPlayerTeleport(int client, int teleporter, bool & result)
{
PrintToServer("Teleport Test");
result = false;
return Plugin_Changed;
}
duplicate... #2140