* Added columns from the SELECT clause that were missing from the GROUP BY clause on line 529 that was causing the query to fail.
* Increased query buffer size on line 513 from 512 to 544 to accomodate the extra characters needed.
* Initial attempt at compiling against tf2_sdk2013
* compilation fix for css
* Switch to AMTL platform arch defines
* Add CBasePlayer forward decl for dods and hl2dm as well
* Update hl2sdk-manifests
* Add dods to CI
* Actually include am-platform.h
---------
Co-authored-by: Kenzzer <kenzzer@users.noreply.github.com>
Co-authored-by: Nicholas Hastings <nshastings@gmail.com>
Fix not clear Japanese translation 'Pending Vote' in basetriggers.phrases.txt
Changed `ペンディング投票` to `投票待ち`. Reason is below.
`ペンディング` is the Japanese pronunciation of `Pending` as it is. And not a common phrase in Japanese.
And literal translation of `Pending` is `保留中`. But `保留中` is means `Waiting, but currently not planned.` in most of situation.
But If I understand correctly this context is waiting for a next vote until time/round limit reached or RTV.
So I've changed `ペンディング` to `待つ`. `待つ` means `Wait` in English. And then result of the change to conform to Japanese grammar is `投票待ち`.
Fix not clear Japanese translation 'Slot reserved' in reservedslots.phrases.txt
Changed `予約スロットのために落とされます。` to `予約スロットにより切断されました。`. Reason is below.
`落とす` in `落とされます` is means same as `Drop` in English.
`落とす` have a lot of meanings in one word in Japanese. For example: `Drop` `Disconnect` `To download (software)` `To reduce (speed)` `To lose (purse)` `To shed (leaves)`
So `落とす` is not clear in this context so I've changed `落とす` to `切断`.
Also `されます` is used for things that are scheduled or about to take place. And `されました` is used for something that has already been done.
This message is shown in after disconnect, so I've changed `されます` to `されました`.
Finally, result of the change become `予約スロットにより切断されました。`.
* Update issue template to use new workflow model
* Nuke old issue template
* Convert bug report template to form
* Add issue template config with support links
Allow extensions to register a debug break handler in the SourcePawn VM.
Enable line debugging support in the VM before any plugin is loaded through a core.cfg option.
* Allow sending panels to SourceTV client via settings
* Revert "Allow sending panels to SourceTV client via settings"
This reverts commit 93bb5ebda0.
* Allow menu to be sent to sourcetv client
* Remove IsFakeClient check
Let the plugin decide who to send the menu to
* - Fixes for OnPlayerTeleport hook for linux and linux64 systems
- Changed signature call of `CanPlayerTeleport` for linux/linux64 to current used name
- Applied fix at detour class CanPlayerBeTeleported to use standard parameter proceedings for linux
* Created a new registry for Teleportation Checking, marking the old one obsolete for older Sourcemod versions.
* Correction for sourcemod use the correct registry from now on.
* - Fixes for OnPlayerTeleport hook for linux and linux64 systems
- Changed signature call of `CanPlayerTeleport` for linux/linux64 to current used name
- Applied fix at detour class CanPlayerBeTeleported to use standard parameter proceedings for linux
* Created a new registry for Teleportation Checking, marking the old one obsolete for older Sourcemod versions.
- Changed signature call of `CanPlayerTeleport` for linux/linux64 to current used name
- Applied fix at detour class CanPlayerBeTeleported to use standard parameter proceedings for linux
* Add new IntHashMap and IntMap natives
This is a continuation of #579.
[HashMap] Adds new IntHashMap and IntMap natives.
This patch makes the following changes
* Refactors StringHashMap to a generic HashMap template
* Adds the IntHashMap class
* Adds new IntMap natives
* Adds IntMap tests to the tries test suite
[HashMap] Reverted rename of CharsAndLength
[HashMap] Use more descriptive template names
[HashMap] Removed old-style natives
[HashMap] Removed IntHash class
[HashMap] Reverted some search & replace errors
Co-authored-by: Geoffrey McRae <geoff@hostfission.com>
* Fix spelling mistake + include
* Fix tries test
* Update tests with clone + ContainsKey
---------
Co-authored-by: Geoffrey McRae <geoff@hostfission.com>
Co-authored-by: Nicholas Hastings <nshastings@gmail.com>
* Modernize Build Scripts
* Fix: Missing dot at extension file name.
Reported by @FortyTwoFortyTwo
* Clean Up: Removed unused variable
* Copying No Longer Needed
Copying the HL2SDK manifest is no longer needed.
Requires latest AMBuild.
* Allow Using Manifests From Project Folder
Check if the manifest already exists in the project folder. If not, then search in the path specified by --hl2sdk-manifest-path.
* Requested Changes by Kenzzer
* Fix Differences Between SDK/No SDK