Skip to content

Commit 3389feb

Browse files
committed
Merge branch 'upstream'
2 parents a239f78 + d8b1769 commit 3389feb

File tree

30 files changed

+197
-71
lines changed

30 files changed

+197
-71
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
patreon: nuclearmonster
44
open_collective: # Replace with a single Open Collective username
5-
ko_fi: jackslater
5+
ko_fi: mrnuclearmonster
66
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
77
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
88
liberapay: # Replace with a single Liberapay username

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44
jobs:
55
linux:
66
name: Linux
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
steps:
99
- uses: actions/checkout@v4
1010
- name: Install Dependencies
@@ -21,7 +21,7 @@ jobs:
2121
path: build/*.zip
2222
windows:
2323
name: Windows
24-
runs-on: windows-2019
24+
runs-on: windows-2022
2525
steps:
2626
- uses: actions/checkout@v4
2727
- name: Compile
@@ -36,7 +36,7 @@ jobs:
3636
path: build/*.zip
3737
macos:
3838
name: macOS
39-
runs-on: macos-12
39+
runs-on: macos-13
4040
steps:
4141
- uses: actions/checkout@v4
4242
- name: Compile

README-ioq3.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,7 @@ directory, this restriction is lifted.
562562

563563
# Contributing
564564

565-
Please send all patches to bugzilla (https://bugzilla.icculus.org), or as a GitHub pull request and
566-
submit your patch there.
565+
Please submit patches through GitHub pull requests.
567566

568567
The focus for ioq3 is to develop a stable base suitable for further development
569568
and provide players with the same Quake 3 experience they've had for years.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ Lilium Arena is licensed under [the GNU GPLv2](COPYING.txt) (or at your option,
3131

3232
## Contributing
3333

34-
Please submit all patches as a GitHub pull request.
34+
Please submit patches through GitHub pull requests.
3535

3636

code/botlib/be_aas_file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ char *AAS_LoadAASLump(fileHandle_t fp, int offset, int length, int *lastoffset,
300300
if (offset != *lastoffset)
301301
{
302302
botimport.Print(PRT_WARNING, "AAS file not sequentially read\n");
303-
if (botimport.FS_Seek(fp, offset, FS_SEEK_SET))
303+
if (botimport.FS_Seek(fp, offset, FS_SEEK_SET) < 0)
304304
{
305305
AAS_Error("can't seek to aas lump\n");
306306
AAS_DumpAASData();

code/botlib/be_ai_char.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ bot_character_t *BotLoadCharacterFromFile(char *charfile, int skill)
222222
source = LoadSourceFile(charfile);
223223
if (!source)
224224
{
225-
botimport.Print(PRT_ERROR, "counldn't load %s\n", charfile);
225+
botimport.Print(PRT_ERROR, "couldn't load %s\n", charfile);
226226
return NULL;
227227
} //end if
228228
ch = (bot_character_t *) GetClearedMemory(sizeof(bot_character_t) +

code/botlib/be_ai_chat.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ bot_synonymlist_t *BotLoadSynonyms(char *filename)
629629
source = LoadSourceFile(filename);
630630
if (!source)
631631
{
632-
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
632+
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
633633
return NULL;
634634
} //end if
635635
//
@@ -984,7 +984,7 @@ bot_randomlist_t *BotLoadRandomStrings(char *filename)
984984
source = LoadSourceFile(filename);
985985
if (!source)
986986
{
987-
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
987+
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
988988
return NULL;
989989
} //end if
990990
//
@@ -1286,7 +1286,7 @@ bot_matchtemplate_t *BotLoadMatchTemplates(char *matchfile)
12861286
source = LoadSourceFile(matchfile);
12871287
if (!source)
12881288
{
1289-
botimport.Print(PRT_ERROR, "counldn't load %s\n", matchfile);
1289+
botimport.Print(PRT_ERROR, "couldn't load %s\n", matchfile);
12901290
return NULL;
12911291
} //end if
12921292
//
@@ -1858,7 +1858,7 @@ bot_replychat_t *BotLoadReplyChat(char *filename)
18581858
source = LoadSourceFile(filename);
18591859
if (!source)
18601860
{
1861-
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
1861+
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
18621862
return NULL;
18631863
} //end if
18641864
//
@@ -2057,7 +2057,7 @@ bot_chat_t *BotLoadInitialChat(char *chatfile, char *chatname)
20572057
source = LoadSourceFile(chatfile);
20582058
if (!source)
20592059
{
2060-
botimport.Print(PRT_ERROR, "counldn't load %s\n", chatfile);
2060+
botimport.Print(PRT_ERROR, "couldn't load %s\n", chatfile);
20612061
return NULL;
20622062
} //end if
20632063
//chat structure

code/botlib/be_ai_goal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ itemconfig_t *LoadItemConfig(char *filename)
288288
PC_SetBaseFolder(BOTFILESBASEFOLDER);
289289
source = LoadSourceFile( path );
290290
if( !source ) {
291-
botimport.Print( PRT_ERROR, "counldn't load %s\n", path );
291+
botimport.Print( PRT_ERROR, "couldn't load %s\n", path );
292292
return NULL;
293293
} //end if
294294
//initialize item config

code/botlib/be_ai_weap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ weaponconfig_t *LoadWeaponConfig(char *filename)
224224
source = LoadSourceFile(path);
225225
if (!source)
226226
{
227-
botimport.Print(PRT_ERROR, "counldn't load %s\n", path);
227+
botimport.Print(PRT_ERROR, "couldn't load %s\n", path);
228228
return NULL;
229229
} //end if
230230
//initialize weapon config

code/botlib/be_ai_weight.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ weightconfig_t *ReadWeightConfig(char *filename)
327327
source = LoadSourceFile(filename);
328328
if (!source)
329329
{
330-
botimport.Print(PRT_ERROR, "counldn't load %s\n", filename);
330+
botimport.Print(PRT_ERROR, "couldn't load %s\n", filename);
331331
return NULL;
332332
} //end if
333333
//

0 commit comments

Comments
 (0)