Skip to content

Commit

Permalink
Made comment in example code smaller
Browse files Browse the repository at this point in the history
It caused the whole page to extend beyond the max width
  • Loading branch information
NiLSPACE committed Dec 13, 2014
1 parent 4f2931d commit 3fb10f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MCServer/Plugins/APIDump/APIDesc.lua
Expand Up @@ -2564,7 +2564,9 @@ World:ForEachEntity(
if not(a_Entity:IsMob()) then
return;
end
local Monster = tolua.cast(a_Entity, "cMonster"); -- Get the cMonster out of cEntity, now that we know the entity represents one.
-- Get the cMonster out of cEntity, now that we know the entity represents one.
local Monster = tolua.cast(a_Entity, "cMonster");
if (Monster:GetMobType() == mtSpider) then
Monster:TeleportToCoords(Monster:GetPosX(), Monster:GetPosY() + 100, Monster:GetPosZ());
end
Expand Down

0 comments on commit 3fb10f0

Please sign in to comment.