Skip to content

Commit

Permalink
Missed a code style change. :P
Browse files Browse the repository at this point in the history
  • Loading branch information
BytewaveMLP committed Nov 11, 2014
1 parent 68fa7ad commit 11fc21c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lua/ulx/modules/sh/geoip.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ if SERVER then
end

if CLIENT then
net.Receive( "geoip_data", function( len )
local rawdata = net.ReadString()
local data = util.JSONToTable( rawdata )
net.Receive( "geoip_data",
function( len )
local rawdata = net.ReadString()
local data = util.JSONToTable( rawdata )

PrintTable( data )
end)
PrintTable( data )
end
)
end

function geoip_capture( ply, callback, errcallback )
Expand Down

0 comments on commit 11fc21c

Please sign in to comment.