aboutsummaryrefslogtreecommitdiff
path: root/src/database/database-postgresql.cpp
diff options
context:
space:
mode:
authorLoïc Blot <loic.blot@unix-experience.fr>2019-01-04 11:33:04 +0100
committerLoïc Blot <loic.blot@unix-experience.fr>2019-01-04 11:33:04 +0100
commit4a7c97c5f6f5e110c587de1569c4ffe53f2c2ef4 (patch)
treeef838254a8135ea7e17a5a2ccf728d8d5313653b /src/database/database-postgresql.cpp
parentc1d7dbfc38e8f48b42d957afad2696a8e56b740b (diff)
downloadhax-minetest-server-4a7c97c5f6f5e110c587de1569c4ffe53f2c2ef4.tar.gz
hax-minetest-server-4a7c97c5f6f5e110c587de1569c4ffe53f2c2ef4.zip
Fix on_successful_save -> onSuccessfulSave
Diffstat (limited to 'src/database/database-postgresql.cpp')
-rw-r--r--src/database/database-postgresql.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/database-postgresql.cpp b/src/database/database-postgresql.cpp
index f5f8e3adf..522580990 100644
--- a/src/database/database-postgresql.cpp
+++ b/src/database/database-postgresql.cpp
@@ -529,7 +529,7 @@ void PlayerDatabasePostgreSQL::savePlayer(RemotePlayer *player)
}
endSave();
- player->on_successful_save();
+ player->onSuccessfulSave();
}
bool PlayerDatabasePostgreSQL::loadPlayer(RemotePlayer *player, PlayerSAO *sao)