X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fnet_notice.qc;h=f748f9903825ad96ec0073a99af653e533717278;hb=c89dfaa4d0342b98c320621557973a65114fbdf4;hp=caaae8b4967bfa70c214d998ab05efc5aeacb94b;hpb=9531e6a07b13cbccf27113f1dcb6e5ccacc6fbb4;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/net_notice.qc b/qcsrc/common/net_notice.qc index caaae8b49..f748f9903 100644 --- a/qcsrc/common/net_notice.qc +++ b/qcsrc/common/net_notice.qc @@ -1,19 +1,21 @@ +#include "net_notice.qh" + #ifdef SVQC void sv_notice_join_think() -{ +{SELFPARAM(); //NextLevel(); float argc = tokenizebyseparator(autocvar_sv_join_notices, "|"); if(argc > 0) { float i; for(i = argc - 1; i >= 0; --i) - sv_notice_to(self.owner, argv(i), autocvar_sv_join_notices_time, FALSE); + sv_notice_to(self.owner, argv(i), autocvar_sv_join_notices_time, false); } remove(self); } void sv_notice_join() -{ +{SELFPARAM(); // to-do: make sv_join_notices support per-entry times if(autocvar_sv_join_notices == "") return; @@ -45,9 +47,6 @@ void sv_notice_toall(string _notice, float _howlong, float _modal) #endif // SVQC #ifdef CSQC -void SUB_Remove() -{ remove(self); } - void cl_notice_read() { entity _notice; @@ -64,11 +63,11 @@ float cl_notice_run() { entity _notes; string _notice; - float m = FALSE; + float m = false; _notes = findchain(classname, "sv_notice"); if(!_notes) - return FALSE; + return false; #define M1 30 #define M2 10 @@ -96,7 +95,7 @@ float cl_notice_run() OUT(_notice, 16); if(_notes.skin) - m = TRUE; + m = true; if(_notes.alpha <= time) {