Dont need to start server-interface with return now

This commit is contained in:
Cooldude2606
2017-12-08 16:45:51 +00:00
parent cab1207a85
commit 89fff7eba9
2 changed files with 1 additions and 2 deletions

View File

@@ -45,13 +45,11 @@ function ExpLib.player_return(rtn)
else game.player.print(table.to_string(rtn))
end
elseif is_type(rtn,'function') then game.player.print('Cant Display Functions')
elseif is_type(rtn,'userdata') then game.player.print('Cant Display Userdata')
else game.player.print(tostring(rtn))
end
else
if is_type(rtn,'table') then log(table.to_string(rtn))
elseif is_type(rtn,'function') then log('Cant Display Functions')
elseif is_type(rtn,'userdata') then log('Cant Display Userdata')
else log(tostring(rtn))
end
end