Q qqqbbb Prince Joined Sep 25, 2010 Messages 530 May 16, 2016 #1 These 2 code snippets do exactly the same thing, right? Code: local iValue = tTable[Key] or Modding.OpenSaveData().GetValue(Key) Code: local iValue = tTable[Key] if iValue == nil then iValue = Modding.OpenSaveData().GetValue(Key) end
These 2 code snippets do exactly the same thing, right? Code: local iValue = tTable[Key] or Modding.OpenSaveData().GetValue(Key) Code: local iValue = tTable[Key] if iValue == nil then iValue = Modding.OpenSaveData().GetValue(Key) end
whoward69 DLL Minion Joined May 30, 2011 Messages 8,725 Location Near Portsmouth, UK May 16, 2016 #2 .Yes.