diff --git a/data/events/scripts/player.lua b/data/events/scripts/player.lua index d858ba0..b65cb56 100644 --- a/data/events/scripts/player.lua +++ b/data/events/scripts/player.lua @@ -92,6 +92,10 @@ function Player:onMoveCreature(creature, fromPosition, toPosition) end function Player:onReportBug(message, position, category) + if self:getAccountType() == ACCOUNT_TYPE_NORMAL then + return false + end + local name = self:getName() local file = io.open("data/reports/bugs/" .. name .. " report.txt", "a")