summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gamemode/itemsystem/common_plantable.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gamemode/itemsystem/common_plantable.lua b/gamemode/itemsystem/common_plantable.lua
index 3754f73..9eefab1 100644
--- a/gamemode/itemsystem/common_plantable.lua
+++ b/gamemode/itemsystem/common_plantable.lua
@@ -19,7 +19,7 @@ local function plant(player, resourcename)
assert(isfunction(tbl.OnGrow),tbl.Name .. " .OnGrow is not a table")
if(player:GetNWInt("plants") > GetConVar("gms_PlantLimit"):GetInt()) then
- player:SendMessage( "You man only have " .. GetConVar("gms_PlantLimit") .. " plants at a time.", 3, Color( 10, 200, 10, 255 ) )
+ player:SendMessage( "You man only have " .. GetConVar("gms_PlantLimit"):GetInt() .. " plants at a time.", 3, Color( 10, 200, 10, 255 ) )
return
end