Skip to content

Releases: Hackmastr/css-basic-admin

7388223

Choose a tag to compare

@github-actions github-actions released this 28 Dec 17:10

Update schema.sql remove definer

227bc58

Choose a tag to compare

@github-actions github-actions released this 28 Dec 17:09

Update schema.sql remove server_id from admin table

0996878

Choose a tag to compare

@github-actions github-actions released this 28 Dec 17:29

Revert "Update schema.sql remove server_id from admin table"

This reverts commit 227bc58.

6c6034a

Choose a tag to compare

@github-actions github-actions released this 26 Dec 19:18
6c6034a

Fix changing map exception

d0d2adc

Choose a tag to compare

@github-actions github-actions released this 24 Dec 16:37
d0d2adc

OnTakeDamage sanity check

Signed-off-by: Hackmastr

faf9ded

Choose a tag to compare

@github-actions github-actions released this 20 Dec 14:42

Fix lang not included on release

65c8cb0

Choose a tag to compare

@github-actions github-actions released this 19 Dec 16:34

Fix: stored procedure

small update to fix the stored procedure
if you are already running the latest version, please execute the following sql in your database:

drop procedure ExpireBans;

create procedure ExpireBans()
BEGIN

    UPDATE punishments
    SET length = IF(length - 1 = 0, -1, length - 1)
    WHERE expires_at > NOW(); 
    
END;

8d16c6e

Choose a tag to compare

@github-actions github-actions released this 18 Dec 07:07

bump version

40b7ff3

Choose a tag to compare

@github-actions github-actions released this 09 Dec 17:04
  • Fix bot targeting

5c88429

Choose a tag to compare

@github-actions github-actions released this 04 Dec 19:52

Add immunity support.