Advertisement
martintokio

Untitled

Nov 29th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. local hideEffects = macro(10000, "Hide Effects", function() end)
  2. onAddThing(function(tile, thing)
  3.  if hideEffects.isOff() then return end
  4.  if thing:isEffect() then
  5.   thing:hide()
  6.  end
  7. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement