How to define an oldValue parameter?
Asked by
4 years ago Edited 4 years ago
I want to add an oldValue parameter to DataStore2's ":Update()" method. This is what I currently have now:
1 | function DataStore:Update(updateFunc) |
2 | updateFunc(DataStore:Get( 0 )) |
3 | self.value = updateFunc(self.value) |
But it's still nil (printed). Help?
How i print it:
1 | datastore:Update( function (oldVal) |
:_Update()
function which is used for setting data in DS2 (Used by datastore:Set() and datastore:Update() in DS2):
01 | function DataStore:_Update(dontCallOnUpdate) |
02 | if not dontCallOnUpdate then |
03 | for _,callback in pairs (self.callbacks) do |
04 | callback(self.value, self) |
09 | self.valueUpdated = true |