Fix wrong message in chat when world has been found

This commit is contained in:
Downforce Agent 2024-01-29 04:53:11 -06:00
parent 3a758e1ab7
commit ca5fcc734d
2 changed files with 2 additions and 1 deletions

View File

@ -57,6 +57,7 @@ help_whisper_message=%s, you have been whispered with more information.
time_msg=It is %s.
roll_msg=%s rolled a %i.
world_not_found_msg=Sorry, I don't know that one.
world_found_msg=Taking you there now, teleport to me!
roomusers_msg=There are %i users in this room.
conf_reload_msg=My configuration has been reloaded.
ping_msg=Response recieved in %ims.

View File

@ -846,7 +846,7 @@ void lookUpWorldName(std::string alias, char* buffer/*replies*/) {
details.position.z = (*key)["position"][2];
details.position.yaw = (*key)["position"][3];
sprintf(buffer, mainConf->getValue("world_not_found_msg", "Taking you there now, teleport to me!").c_str());
sprintf(buffer, mainConf->getValue("world_found_msg", "Taking you there now, teleport to me!").c_str());
handleTeleportRequest(details);
}
else {