sourcemod icon indicating copy to clipboard operation
sourcemod copied to clipboard

TF2_OnPlayerTeleport isn't working anymore on Linux

Open StShAzzy opened this issue 1 year ago • 0 comments

Help us help you

  • [X] I have checked that my issue doesn't exist yet.
  • [X] I have tried my absolute best to reduce the problem-space and have provided the absolute smallest test-case possible.
  • [X] I can always reproduce the issue with the provided description below.

Environment

  • Operating System version: Linux
  • Game/AppID (with version if applicable): 440
  • Current SourceMod version: 1.12.0.7121
  • Current SourceMod snapshot: 7121:7d78c141
  • Current Metamod: Source snapshot: 1.12.0-dev+1192V
  • [ ] I have updated SourceMod to the latest version and it still happens.
  • [ ] I have updated SourceMod to the latest snapshot and it still happens.
  • [ ] I have updated SourceMM to the latest snapshot and it still happens.

Description

TF2_OnPlayerTeleport isn't fired anymore since the update of 18/04/2024 both on x86 and x64

Problematic Code (or Steps to Reproduce)

#include <tf2_stocks>

public Action TF2_OnPlayerTeleport(int client, int teleporter, bool& result) {
	PrintToChatAll("[DEBUG]: TF2_OnPlayerTeleport Fired! Player Should Teleport Through!");
	result = true;
	return Plugin_Changed;
}

StShAzzy avatar Apr 22 '24 22:04 StShAzzy