mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
restore original files that had erroneous whitespace changes to reduce diff
This commit is contained in:
parent
57b27a7bb7
commit
eb1b7e52df
5 changed files with 4 additions and 7 deletions
|
@ -160,9 +160,7 @@ DomainServer::DomainServer(int argc, char* argv[]) :
|
|||
getTemporaryName();
|
||||
}
|
||||
|
||||
_gatekeeper.preloadAllowedUserPublicKeys(); // so they can connect on first request
|
||||
|
||||
//send signal to DomainMetadata when descriptors changed
|
||||
// send signal to DomainMetadata when descriptors changed
|
||||
_metadata = new DomainMetadata(this);
|
||||
connect(&_settingsManager, &DomainServerSettingsManager::settingsUpdated,
|
||||
_metadata, &DomainMetadata::descriptorsChanged);
|
||||
|
@ -2850,4 +2848,4 @@ void DomainServer::handleOctreeFileReplacement(QByteArray octreeFile) {
|
|||
|
||||
limitedNodeList->sendPacketList(std::move(octreeFilePacketList), *octreeNode);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1164,6 +1164,7 @@ bool EntityScriptingInterface::actionWorker(const QUuid& entityID,
|
|||
return doTransmit;
|
||||
}
|
||||
|
||||
|
||||
QUuid EntityScriptingInterface::addAction(const QString& actionTypeString,
|
||||
const QUuid& entityID,
|
||||
const QVariantMap& arguments) {
|
||||
|
|
|
@ -359,7 +359,6 @@ public slots:
|
|||
*/
|
||||
Q_INVOKABLE glm::mat4 getEntityLocalTransform(const QUuid& entityID);
|
||||
|
||||
|
||||
signals:
|
||||
void collisionWithEntity(const EntityItemID& idA, const EntityItemID& idB, const Collision& collision);
|
||||
|
||||
|
|
|
@ -93,4 +93,3 @@ bool UsersScriptingInterface::getRequestsDomainListData() {
|
|||
void UsersScriptingInterface::setRequestsDomainListData(bool isRequesting) {
|
||||
DependencyManager::get<NodeList>()->setRequestsDomainListData(isRequesting);
|
||||
}
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ class UsersScriptingInterface : public QObject, public Dependency {
|
|||
|
||||
Q_PROPERTY(bool canKick READ getCanKick)
|
||||
Q_PROPERTY(bool requestsDomainListData READ getRequestsDomainListData WRITE setRequestsDomainListData)
|
||||
|
||||
public:
|
||||
UsersScriptingInterface();
|
||||
|
||||
|
@ -130,7 +131,6 @@ public slots:
|
|||
*/
|
||||
bool getIgnoreRadiusEnabled();
|
||||
|
||||
|
||||
signals:
|
||||
void canKickChanged(bool canKick);
|
||||
void ignoreRadiusEnabledChanged(bool isEnabled);
|
||||
|
|
Loading…
Reference in a new issue