|
@ -24,13 +24,11 @@ struct BaseProfile : RenX::ServerProfile |
|
|
supported = true; |
|
|
supported = true; |
|
|
privateMessages = true; |
|
|
privateMessages = true; |
|
|
disconnectOnGameOver = false; |
|
|
disconnectOnGameOver = false; |
|
|
|
|
|
pidbug = false; |
|
|
|
|
|
mustSanitize = true; |
|
|
} |
|
|
} |
|
|
}; |
|
|
} _baseProfile; |
|
|
|
|
|
const RenX::ServerProfile *RenX::defaultProfile = &_baseProfile; |
|
|
struct IdealProfile : BaseProfile |
|
|
|
|
|
{ |
|
|
|
|
|
} _idealProfile; |
|
|
|
|
|
const RenX::ServerProfile *RenX::defaultProfile = &_idealProfile; |
|
|
|
|
|
|
|
|
|
|
|
struct OpenBeta1Profile : BaseProfile |
|
|
struct OpenBeta1Profile : BaseProfile |
|
|
{ |
|
|
{ |
|
@ -47,6 +45,7 @@ struct OpenBeta2Profile : BaseProfile |
|
|
OpenBeta2Profile() |
|
|
OpenBeta2Profile() |
|
|
{ |
|
|
{ |
|
|
privateMessages = false; |
|
|
privateMessages = false; |
|
|
|
|
|
pidbug = true; |
|
|
} |
|
|
} |
|
|
} _openBeta2Profile; |
|
|
} _openBeta2Profile; |
|
|
const RenX::ServerProfile *RenX::openBeta2Profile = &_openBeta2Profile; |
|
|
const RenX::ServerProfile *RenX::openBeta2Profile = &_openBeta2Profile; |
|
|