mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-02-21 18:50:57 +00:00
Merge pull request #223 from smcv/seperating
Fix mis-spellings of "separating" as "seperating"
This commit is contained in:
commit
3bd30f1f4f
4 changed files with 5 additions and 5 deletions
|
@ -65,8 +65,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#define FACE_LADDER 2 //ladder
|
#define FACE_LADDER 2 //ladder
|
||||||
#define FACE_GROUND 4 //standing on ground when in this face
|
#define FACE_GROUND 4 //standing on ground when in this face
|
||||||
#define FACE_GAP 8 //gap in the ground
|
#define FACE_GAP 8 //gap in the ground
|
||||||
#define FACE_LIQUID 16 //face seperating two areas with liquid
|
#define FACE_LIQUID 16 //face separating two areas with liquid
|
||||||
#define FACE_LIQUIDSURFACE 32 //face seperating liquid and air
|
#define FACE_LIQUIDSURFACE 32 //face separating liquid and air
|
||||||
#define FACE_BRIDGE 64 //can walk over this face if bridge is closed
|
#define FACE_BRIDGE 64 //can walk over this face if bridge is closed
|
||||||
|
|
||||||
//area contents
|
//area contents
|
||||||
|
|
|
@ -152,7 +152,7 @@ int AAS_UpdatePortal(int areanum, int clusternum)
|
||||||
{
|
{
|
||||||
//remove the cluster portal flag contents
|
//remove the cluster portal flag contents
|
||||||
aasworld.areasettings[areanum].contents &= ~AREACONTENTS_CLUSTERPORTAL;
|
aasworld.areasettings[areanum].contents &= ~AREACONTENTS_CLUSTERPORTAL;
|
||||||
Log_Write("portal area %d is seperating more than two clusters\r\n", areanum);
|
Log_Write("portal area %d is separating more than two clusters\r\n", areanum);
|
||||||
return qfalse;
|
return qfalse;
|
||||||
} //end else
|
} //end else
|
||||||
if (aasworld.portalindexsize >= AAS_MAX_PORTALINDEXSIZE)
|
if (aasworld.portalindexsize >= AAS_MAX_PORTALINDEXSIZE)
|
||||||
|
|
|
@ -1053,7 +1053,7 @@ void CM_TraceThroughTree( traceWork_t *tw, int num, float p1f, float p2f, vec3_t
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// find the point distances to the seperating plane
|
// find the point distances to the separating plane
|
||||||
// and the offset for the size of the box
|
// and the offset for the size of the box
|
||||||
//
|
//
|
||||||
node = cm.nodes + num;
|
node = cm.nodes + num;
|
||||||
|
|
|
@ -411,7 +411,7 @@ void Com_ParseCommandLine( char *commandLine ) {
|
||||||
if (*commandLine == '"') {
|
if (*commandLine == '"') {
|
||||||
inq = !inq;
|
inq = !inq;
|
||||||
}
|
}
|
||||||
// look for a + seperating character
|
// look for a + separating character
|
||||||
// if commandLine came from a file, we might have real line seperators
|
// if commandLine came from a file, we might have real line seperators
|
||||||
if ( (*commandLine == '+' && !inq) || *commandLine == '\n' || *commandLine == '\r' ) {
|
if ( (*commandLine == '+' && !inq) || *commandLine == '\n' || *commandLine == '\r' ) {
|
||||||
if ( com_numConsoleLines == MAX_CONSOLE_LINES ) {
|
if ( com_numConsoleLines == MAX_CONSOLE_LINES ) {
|
||||||
|
|
Loading…
Reference in a new issue