Skip to content

Releases: Hackmastr/css-basic-admin

7388223

28 Dec 17:10
Compare
Choose a tag to compare

Update schema.sql remove definer

227bc58

28 Dec 17:09
Compare
Choose a tag to compare

Update schema.sql remove server_id from admin table

0996878

28 Dec 17:29
Compare
Choose a tag to compare

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

This reverts commit 227bc58.

6c6034a

26 Dec 19:18
6c6034a
Compare
Choose a tag to compare

Fix changing map exception

d0d2adc

24 Dec 16:37
d0d2adc
Compare
Choose a tag to compare

OnTakeDamage sanity check

Signed-off-by: Hackmastr

faf9ded

20 Dec 14:42
Compare
Choose a tag to compare

Fix lang not included on release

65c8cb0

19 Dec 16:34
Compare
Choose a tag to compare

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

18 Dec 07:07
Compare
Choose a tag to compare

bump version

40b7ff3

09 Dec 17:04
Compare
Choose a tag to compare
  • Fix bot targeting

5c88429

04 Dec 19:52
Compare
Choose a tag to compare

Add immunity support.