@@ -220,9 +220,7 @@ void GameOptions::Set(const std::string& category, const std::string& name, cons
220
220
return ;
221
221
222
222
const auto consoleLogger = spdlog::get (" scripting" );
223
- if (option->Set (value))
224
- consoleLogger->info (option->GetInfo ());
225
- else
223
+ if (!option->Set (value))
226
224
{
227
225
if (option->GetType () == GameOption::kString )
228
226
consoleLogger->error (" Failed to set game option '{}/{}', can't set string options right now." , category, name);
@@ -238,9 +236,7 @@ void GameOptions::SetBool(const std::string& category, const std::string& name,
238
236
return ;
239
237
240
238
const auto consoleLogger = spdlog::get (" scripting" );
241
- if (option->SetBool (value))
242
- consoleLogger->info (option->GetInfo ());
243
- else
239
+ if (!option->SetBool (value))
244
240
{
245
241
if (option->GetType () != GameOption::kBoolean )
246
242
consoleLogger->error (" Failed to set game option '{}/{}', not a boolean." , category, name);
@@ -256,9 +252,7 @@ void GameOptions::SetInt(const std::string& category, const std::string& name, i
256
252
return ;
257
253
258
254
const auto consoleLogger = spdlog::get (" scripting" );
259
- if (option->SetInt (value))
260
- consoleLogger->info (option->GetInfo ());
261
- else
255
+ if (!option->SetInt (value))
262
256
{
263
257
if (option->GetType () != GameOption::kInteger && option->GetType () != GameOption::kColor )
264
258
consoleLogger->error (" Failed to set game option '{}/{}', not an integer." , category, name);
@@ -274,9 +268,7 @@ void GameOptions::SetFloat(const std::string& category, const std::string& name,
274
268
return ;
275
269
276
270
const auto consoleLogger = spdlog::get (" scripting" );
277
- if (option->SetFloat (value))
278
- consoleLogger->info (option->GetInfo ());
279
- else
271
+ if (!option->SetFloat (value))
280
272
{
281
273
if (option->GetType () != GameOption::kFloat )
282
274
consoleLogger->error (" Failed to set game option '{}/{}', not a float." , category, name);
@@ -292,9 +284,7 @@ void GameOptions::Toggle(const std::string& category, const std::string& name)
292
284
return ;
293
285
294
286
const auto consoleLogger = spdlog::get (" scripting" );
295
- if (option->Toggle ())
296
- consoleLogger->info (option->GetInfo ());
297
- else
287
+ if (!option->Toggle ())
298
288
{
299
289
if (option->GetType () != GameOption::kBoolean )
300
290
consoleLogger->error (" Failed to set game option '{}/{}', not a boolean." , category, name);
0 commit comments