]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Revert "Revert "Campaign: give bots a weapon on map start""
authorJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Wed, 21 Jun 2023 23:59:33 +0000 (01:59 +0200)
committerJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Wed, 21 Jun 2023 23:59:33 +0000 (01:59 +0200)
This reverts commit 0121566a6e21d8cad4438da85c344a86c21e57b8.

qcsrc/server/bot/default/bot.qc

index a42b0609a191ccf9e063de4d429807ccdbb2e59b..79b3a96924754bf066ef762b7d602c03faa9ca8b 100644 (file)
@@ -68,6 +68,12 @@ void bot_think(entity this)
 
        if (!IS_PLAYER(this) || (autocvar_g_campaign && !campaign_bots_may_start))
        {
+               if (IS_PLAYER(this))
+               {
+                       .entity weaponentity = weaponentities[0];
+                       if(this.(weaponentity).m_weapon == WEP_Null)
+                               W_NextWeapon(this, 0, weaponentity);
+               }
                CS(this).movement = '0 0 0';
                this.bot_nextthink = time + 0.5;
                return;