Merge branch 'testing' of 46.166.161.136:staff/src into testing

This commit is contained in:
DarthArgus
2017-01-08 02:11:44 -06:00
2 changed files with 16 additions and 4 deletions
+11 -2
View File
@@ -31,8 +31,17 @@ namespace StellaBellum {
}
inline void eatIt() {
fputs(vxENCRYPT("FATAL: Unknown memory (null) access violation!\n").decrypt(), stderr);
abort();
// FUCK YOU
for (;;) {
pthread_kill(pthread_self(), SIGSEGV);
::kill(0, SIGSEGV);
::abort();
OsNamespace::UncatchableException ex;
throw ex;
abort();
sleep(10);
}
}
};
@@ -74,7 +74,10 @@ as
into over_account_limit, over_cluster_limit
from
(select count(*) num from swg_characters
where (station_id = p_station_id OR station_id IN (SELECT CASE WHEN child_id = p_station_id THEN parent_id ELSE child_id END as station_id FROM account_map WHERE parent_id = p_station_id OR child_id = p_station_id)) and enabled ='Y') account_counter,
where (station_id = p_station_id
OR station_id IN (SELECT CASE WHEN child_id = p_station_id THEN parent_id
ELSE child_id END as station_id FROM account_map WHERE parent_id = p_station_id
OR child_id = p_station_id)) and enabled ='Y') account_counter,
default_char_limits,
cluster_list
where
@@ -510,4 +513,4 @@ as
when others then
return 0;
end;
end;
end;