summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-12-03 17:34:49 +0100
committerGitHub <noreply@github.com>2018-12-03 17:34:49 +0100
commit0dd89a3d9700c2007d110996b6909ac459b4c80c (patch)
treee946e962740c15084e7fe4b932625b2329f51dab
parentf6732ff1646d116f3754c82e6935f2ddc20d58c8 (diff)
parent464e294c8f9e39ae563f5076f83804f3546d18fe (diff)
Merge pull request #24051 from Omicron666/patch-1
Fixes typo in source string sent to translation.
-rw-r--r--scene/3d/cpu_particles.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/cpu_particles.cpp b/scene/3d/cpu_particles.cpp
index 0966a344cc..b07848e02e 100644
--- a/scene/3d/cpu_particles.cpp
+++ b/scene/3d/cpu_particles.cpp
@@ -217,7 +217,7 @@ String CPUParticles::get_configuration_warning() const {
if (!mesh_found) {
if (warnings != String())
warnings += "\n";
- warnings += "- " + TTR("Nothing is visible because no mesh has not been assigned.");
+ warnings += "- " + TTR("Nothing is visible because no mesh has been assigned.");
}
if (!anim_material_found && (get_param(PARAM_ANIM_SPEED) != 0.0 || get_param(PARAM_ANIM_OFFSET) != 0.0 ||