summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/viewdistance.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/viewdistance.lua')
-rw-r--r--MCServer/Plugins/Core/viewdistance.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/MCServer/Plugins/Core/viewdistance.lua b/MCServer/Plugins/Core/viewdistance.lua
index 2cf96d8bc..9b2066cbf 100644
--- a/MCServer/Plugins/Core/viewdistance.lua
+++ b/MCServer/Plugins/Core/viewdistance.lua
@@ -1,10 +1,12 @@
function HandleViewDistanceCommand( Split, Player )
+
if( #Split ~= 2 ) then
- Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. "Usage: /viewdistance [".. cClientHandle.MIN_VIEW_DISTANCE .."-".. cClientHandle.MAX_VIEW_DISTANCE .."]" )
+ SendMessage( Player, "Usage: /viewdistance [".. cClientHandle.MIN_VIEW_DISTANCE .."-".. cClientHandle.MAX_VIEW_DISTANCE .."]" )
return true
end
-
+
Player:GetClientHandle():SetViewDistance( Split[2] )
- Player:SendMessage(cChatColor.Green .. "[INFO] " .. cChatColor.White .. "Your view distance has been set to " .. Player:GetClientHandle():GetViewDistance() )
+ SendMessageSuccess( Player, "Your view distance has been set to " .. Player:GetClientHandle():GetViewDistance() )
return true
-end \ No newline at end of file
+
+end