1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-20 06:03:01 +00:00

removed incorrect implementation of 2.5D in gen_sample_list()

This commit is contained in:
Zeno Rogue 2021-05-12 20:20:40 +02:00
parent 891f163954
commit 7dfa614e6a

View File

@ -1444,7 +1444,6 @@ EX namespace hybrid {
});
EX vector<pair<int, cell*>> gen_sample_list() {
if(!hybri && WDIM != 2) return {make_pair(0, centerover), make_pair(centerover->type, nullptr)};
vector<pair<int, cell*>> result;
for(auto& v: cgi.walloffsets) if(v.first >= 0) result.push_back(v);
sort(result.begin(), result.end());