build: workflow from hell (#1)
All checks were successful
Build / build-linux (push) Successful in 7s

This commit was merged in pull request #1.
This commit is contained in:
2024-03-20 17:11:35 +00:00
parent 09af9cba74
commit 8091ca53bb
5 changed files with 85 additions and 15 deletions

View File

@@ -4,7 +4,11 @@
#define TOOL
#endif
#if defined(TOOL)
#inline scripts\mp\_utility;
#else
#include "_utility.gsh"
#endif
GENERIC_INIT;
@@ -14,7 +18,9 @@ onPlayerConnect()
{
level waittill( "connected", player );
#if defined(TOOL)
waittillframeend;
#endif
BOT_CHK( player );
@@ -125,6 +131,6 @@ onPlayerSpawned()
{
self waittill( "spawned_player" );
self setPerk( "specialty_marathon", true, false );
self setPerk( "specialty_marathon", true, false );
}
}