Skip to content

Commit

Permalink
Fixed Bug #488
Browse files Browse the repository at this point in the history
  • Loading branch information
Shroompow committed May 20, 2017
1 parent b1b04e6 commit 21380f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/Monsters/Eternals/Corn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ function eternalCorn:ai_main(entity)

--Leave slippery creep
if (entity.Variant == 1 and entity.SubType == 15 and entity.FrameCount % 4 == 0) then
Isaac.Spawn(EntityType.ENTITY_EFFECT, EffectVariant.CREEP_SLIPPERY_BROWN, 1, entity.Position, Vector(0,0), entity)
local creep = Isaac.Spawn(EntityType.ENTITY_EFFECT, EffectVariant.CREEP_SLIPPERY_BROWN, 1, entity.Position, Vector(0,0), entity)
creep:Update()
end

end
Expand Down

0 comments on commit 21380f6

Please sign in to comment.