Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit ee63dce

Browse files
committed
E
1 parent 1e95b78 commit ee63dce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

byond-extools/src/monstermos/monstermos.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -503,9 +503,7 @@ const char* enable_monstermos()
503503
//Set up gas types map
504504
std::vector<Value> nullvector = { Value(0.0f) };
505505
Container gas_types_list = Core::get_proc("/proc/gas_types").call(nullvector);
506-
Value GLOB = Value::Global().get("GLOB");
507-
if (!GLOB) return "GLOB is null!";
508-
Container meta_gas_info = GLOB.get("meta_gas_info");
506+
Container meta_gas_info = Value::Global().get("meta_gas_info");
509507
int gaslen = gas_types_list.length();
510508
if (gaslen != TOTAL_NUM_GASES) {
511509
return "TOTAL_NUM_GASES does not match the number of /datum/gas subtypes!!";

0 commit comments

Comments
 (0)