Fix lock/unlock text util

This commit is contained in:
Vortrex
2020-12-28 12:54:11 -06:00
parent 074d190262
commit 5ddac7db45

View File

@@ -1782,7 +1782,7 @@ function isPlayerSpawned(client) {
// ----------------------------------------------------------------------------
function getLockedUnlockedFromBool(boolVal) {
function getLockedUnlockedTextFromBool(boolVal) {
return (boolVal) ? "locked" : "unlocked";
}