rebel1324 / NutScript

A free role-play framework for Garry's Mod.
http://nutscript.net
MIT License
66 stars 32 forks source link

Chatbox colour fix + schema/plugin load order fix #345

Closed TovarischPootis closed 3 years ago

TovarischPootis commented 3 years ago

Fixes the chatbox color bug that prevents custom chat colours. Was caused by Gmod saving Color tables and normal tables as the same, but treating them differently. Meaning that editing the color table saves it as a normal table, and then fucks up when its trying to be used as a Color table

unknown

for some reason plugins loaded BEFORE schema files, where it should be the other way around. This allows plugins to reference schema defined stuff consistently.

(also a few small touches such as removing the deprecated util.tobool with just tobool)