alliedmodders / sourcemod

SourceMod - Source Engine Scripting and Administration
http://www.sourcemod.net/
980 stars 422 forks source link

Load same SM plugin multiple time. #1595

Open ambaca opened 3 years ago

ambaca commented 3 years ago

Help us help you

Environment

Description

You can load same plugin multiple times. Don't know would this be bad thing, perhaps good feature for something development.

Problematic Code (or Steps to Reproduce)

sm plugins load boon
sm plugins load /boon
sm plugins load ./boon
...
sm plugins load ./././boon

sm plugins list
...
  20 "test.smx"
  21 "\boon.smx"
  22 ".\boon.smx"
  23 "Reserved Slots" (1.10.0.6510) by AlliedModders LLC
  24 ".\.\boon.smx"
  25 ".\.\.\boon.smx"

Logs

dvander commented 3 years ago

I guess we should use realpath() or something.